Class MembersResource


public class MembersResource extends OrganizationAdminResource
  • Constructor Details

  • Method Details

    • getMembers

      @GET @Path("") @Produces("application/json") public Stream<org.keycloak.representations.idm.UserRepresentation> getMembers(@QueryParam("search") String searchQuery, @QueryParam("first") Integer firstResult, @QueryParam("max") Integer maxResults)
    • getMembersCount

      @GET @Path("count") @Produces("application/json") public Long getMembersCount()
    • removeMember

      @DELETE @Path("{userId}") public jakarta.ws.rs.core.Response removeMember(@PathParam("userId") String userId)
    • getMember

      @GET @Path("{userId}") public jakarta.ws.rs.core.Response getMember(@PathParam("userId") String userId)
    • addMember

      @PUT @Path("{userId}") @Produces("application/json") public jakarta.ws.rs.core.Response addMember(@PathParam("userId") String userId)