0
votes

Keycloak REST API allows to list the users : http://localhost:8080/auth/admin/realms//users

and what is more useful to filter users with a query like: http://localhost:8080/auth/admin/realms//users?firstName=Test

Is it possible to write the query with Excluding condition? For example :

http://localhost:8080/auth/admin/realms//users?firstName!=AnyName ( that example not working and in response, the whole list of users returns ). Or I understand that it's a "rocket science" but might be like http://localhost:8080/auth/admin/realms//users?role!=Admin ...

1

1 Answers