ApiResponse<ApplicationPage> |
ApplicationPageApi.createApplicationPageWithHttpInfo(ApplicationPageCreateRequest body) |
Create an application page
Similar to createApplicationPage but it also returns the http response headers .
|
ApiResponse<ApplicationPage> |
ApplicationPageApi.getApplicationPageByIdWithHttpInfo(String id) |
Finds an application page by ID
Similar to getApplicationPageById but it also returns the http response headers .
|
List<ApplicationPage> |
ApplicationPageApi.searchApplicationPages(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds application pages
Finds application pages with pagination params and filters - can order on `id`, `token`, `applicationId`, `pageId` - can search on `token` - can filter on `id`, `token`, `applicationId`, `pageId`
|
List<ApplicationPage> |
ApplicationPageApi.searchApplicationPages(Map<String,Object> queryParams) |
Finds application pages
Finds application pages with pagination params and filters - can order on `id`, `token`, `applicationId`, `pageId` - can search on `token` - can filter on `id`, `token`, `applicationId`, `pageId`
Note, this is equivalent to the other searchApplicationPages method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ApplicationPage>> |
ApplicationPageApi.searchApplicationPagesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds application pages
Similar to searchApplicationPages but it also returns the http response headers .
|
ApiResponse<List<ApplicationPage>> |
ApplicationPageApi.searchApplicationPagesWithHttpInfo(Map<String,Object> queryParams) |
Finds application pages
Finds application pages with pagination params and filters - can order on `id`, `token`, `applicationId`, `pageId` - can search on `token` - can filter on `id`, `token`, `applicationId`, `pageId`
Note, this is equivalent to the other searchApplicationPages that receives the query parameters as a map,
but this one also exposes the Http response headers
|