ApiResponse<ProfileEntry> |
ProfileEntryApi.createProfileEntryWithHttpInfo(ProfileEntryCreateRequest body) |
Create the ProfileEntry
Similar to createProfileEntry but it also returns the http response headers .
|
ApiResponse<ProfileEntry> |
ProfileEntryApi.getProfileEntryByIdWithHttpInfo(String id) |
Finds the ProfileEntry by ID
Similar to getProfileEntryById but it also returns the http response headers .
|
List<ProfileEntry> |
ProfileEntryApi.searchProfileEntries(Integer p,
Integer c,
List<String> f,
String s) |
Finds ProfileEntries
Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`
|
List<ProfileEntry> |
ProfileEntryApi.searchProfileEntries(Map<String,Object> queryParams) |
Finds ProfileEntries
Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`
Note, this is equivalent to the other searchProfileEntries method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ProfileEntry>> |
ProfileEntryApi.searchProfileEntriesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String s) |
Finds ProfileEntries
Similar to searchProfileEntries but it also returns the http response headers .
|
ApiResponse<List<ProfileEntry>> |
ProfileEntryApi.searchProfileEntriesWithHttpInfo(Map<String,Object> queryParams) |
Finds ProfileEntries
Finds ProfileEntries with pagination params and filters - can search on `name` - can filter on `page`,`name` and `parent_id`
Note, this is equivalent to the other searchProfileEntries that receives the query parameters as a map,
but this one also exposes the Http response headers
|