List<Task> |
TaskApi.searchTasks(TaskApi.SearchTasksQueryParams queryParams) |
Finds Tasks
Finds Tasks with pagination params and filters - can order on `caseId`, `processId`, `state`, `type`,
`supervisor_id`, `last_update_date` - can filter on `caseId`, `processId`, `state`, `type`,
`supervisor_id`, `last_update_date`
Note, this is equivalent to the other searchTasks method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<Task>> |
TaskApi.searchTasksWithHttpInfo(TaskApi.SearchTasksQueryParams queryParams) |
Finds Tasks
Finds Tasks with pagination params and filters - can order on `caseId`, `processId`, `state`, `type`,
`supervisor_id`, `last_update_date` - can filter on `caseId`, `processId`, `state`, `type`,
`supervisor_id`, `last_update_date`
Note, this is equivalent to the other searchTasks that receives the query parameters as a map,
but this one also exposes the Http response headers
|