Interface OrganizationMembersResource


public interface OrganizationMembersResource
  • Method Details

    • addMember

      @POST @Consumes("application/json") jakarta.ws.rs.core.Response addMember(String userId)
    • getAll

      @GET @Produces("application/json") List<UserRepresentation> getAll()
      Return all members in the organization.
      Returns:
      a list containing the organization members.
    • search

      @GET @Produces("application/json") List<UserRepresentation> search(@QueryParam("search") String search, @QueryParam("exact") Boolean exact, @QueryParam("first") Integer first, @QueryParam("max") Integer max)
      Return all organization members that match the specified filters.
      Parameters:
      search - a String representing either a member's username, e-mail, first name, or last name.
      exact - if true, the members will be searched using exact match for the search param - i.e. at least one of the username main attributes must match exactly the search param. If false, the method returns all members with at least one main attribute partially matching the search param.
      first - index of the first element (pagination offset).
      max - the maximum number of results.
      Returns:
      a list containing the matched organization members.
    • getOrganization

      @Path("{id}/organization") @GET @Produces("application/json") OrganizationRepresentation getOrganization(@PathParam("id") String id)
    • member

      @Path("{id}") OrganizationMemberResource member(@PathParam("id") String id)
    • inviteUser

      @POST @Path("invite-user") @Consumes("application/x-www-form-urlencoded") jakarta.ws.rs.core.Response inviteUser(@FormParam("email") String email, @FormParam("firstName") String firstName, @FormParam("lastName") String lastName)
    • inviteExistingUser

      @POST @Path("invite-existing-user") @Consumes("application/x-www-form-urlencoded") jakarta.ws.rs.core.Response inviteExistingUser(@FormParam("id") String id)