Interface UsersResource


  • public interface UsersResource
    Since:
    0.9.0
    • Method Detail

      • list

        @GET
        @Produces("application/json")
        List<org.keycloak.representations.idm.UserRepresentation> list()
      • search

        @GET
        @Produces("application/json")
        List<org.keycloak.representations.idm.UserRepresentation> search​(@QueryParam("username")
                                                                         String username,
                                                                         @QueryParam("firstName")
                                                                         String firstName,
                                                                         @QueryParam("lastName")
                                                                         String lastName,
                                                                         @QueryParam("email")
                                                                         String email,
                                                                         @QueryParam("first")
                                                                         Integer firstResult,
                                                                         @QueryParam("max")
                                                                         Integer maxResults)
      • search

        @GET
        @Produces("application/json")
        List<org.keycloak.representations.idm.UserRepresentation> search​(@QueryParam("search")
                                                                         String search,
                                                                         @QueryParam("first")
                                                                         Integer firstResult,
                                                                         @QueryParam("max")
                                                                         Integer maxResults)
      • create

        @POST
        @Consumes("application/json")
        javax.ws.rs.core.Response create​(org.keycloak.representations.idm.UserRepresentation userRepresentation)