ApiResponse<ProfileMember> |
ProfileMemberApi.createProfileMemberWithHttpInfo(ProfileMemberCreateRequest body) |
Create the ProfileMember
Similar to createProfileMember but it also returns the http response headers .
|
ApiResponse<ProfileMember> |
ProfileMemberApi.getProfileMemberByIdWithHttpInfo(String id) |
Finds the ProfileMember by ID
Similar to getProfileMemberById but it also returns the http response headers .
|
List<ProfileMember> |
ProfileMemberApi.searchProfileMembers(Integer p,
Integer c,
List<String> f) |
Finds ProfileMembers
Finds ProfileMembers with pagination params and filters **Filter `member_type` is mandatory** You can filter on `profile_id`, `user_id`, `role_id` and `group_id`
|
List<ProfileMember> |
ProfileMemberApi.searchProfileMembers(Map<String,Object> queryParams) |
Finds ProfileMembers
Finds ProfileMembers with pagination params and filters **Filter `member_type` is mandatory** You can filter on `profile_id`, `user_id`, `role_id` and `group_id`
Note, this is equivalent to the other searchProfileMembers method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ProfileMember>> |
ProfileMemberApi.searchProfileMembersWithHttpInfo(Integer p,
Integer c,
List<String> f) |
Finds ProfileMembers
Similar to searchProfileMembers but it also returns the http response headers .
|
ApiResponse<List<ProfileMember>> |
ProfileMemberApi.searchProfileMembersWithHttpInfo(Map<String,Object> queryParams) |
Finds ProfileMembers
Finds ProfileMembers with pagination params and filters **Filter `member_type` is mandatory** You can filter on `profile_id`, `user_id`, `role_id` and `group_id`
Note, this is equivalent to the other searchProfileMembers that receives the query parameters as a map,
but this one also exposes the Http response headers
|