Openfire Rest API

I have installed Openfire 4.1.5 and added the REST API plugin. When I trying to retrieve users and search users, using rest API calls, they are working fine as expected.
But Filtering users by propertyKey and propertyKey/propertyValue doesn’t work as expected.

I hope following API call will give all the user’s email fields values -
http://example.org:9090/plugins/restapi/v1/users?propertyKey=email
But this returns an empty object.

And as per the documentation following API call need to return all the emails which has sub-string “cha” , but it doesn’t.
http://example.org:9090/plugins/restapi/v1/users?propertyKey=email&propertyValue=cha

By creating a user, did you also added “email” propertyKey/Value?
(PropertyKeys are not set by default)

Thank you very much , After creating users by adding propertyKey/Value then the problem was solved :slight_smile: . But one more question,
Is there way to wildcard search by properties as we can search by username.

Thanks

unfortunately it is not possibel

Ok thank you for your support :slight_smile: