ApiResponse<HumanTask> |
HumanTaskApi.getHumanTaskByIdWithHttpInfo(String id) |
Finds the HumanTask by ID
Similar to getHumanTaskById but it also returns the http response headers .
|
List<HumanTask> |
HumanTaskApi.searchHumanTasks(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds HumanTasks
Finds HumanTasks with pagination params and filters - can order on `name`, `priority`, `dueDate`, `state`, `processDefinitionId`, `processInstanceId`, `parentActivityInstanceId`, `assigneeId`, `parentContainerId`, `displayName`, `reachedStateDate` - can search on any field that can be used to order results - can filter on `assigned_id`, `state`, `name`, `displayName`, `processDefinitionId`, `caseId`, `rootProcessInstanceId`, `parentProcessInstanceId`
|
List<HumanTask> |
HumanTaskApi.searchHumanTasks(Map<String,Object> queryParams) |
Finds HumanTasks
Finds HumanTasks with pagination params and filters - can order on `name`, `priority`, `dueDate`, `state`, `processDefinitionId`, `processInstanceId`, `parentActivityInstanceId`, `assigneeId`, `parentContainerId`, `displayName`, `reachedStateDate` - can search on any field that can be used to order results - can filter on `assigned_id`, `state`, `name`, `displayName`, `processDefinitionId`, `caseId`, `rootProcessInstanceId`, `parentProcessInstanceId`
Note, this is equivalent to the other searchHumanTasks method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<HumanTask>> |
HumanTaskApi.searchHumanTasksWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds HumanTasks
Similar to searchHumanTasks but it also returns the http response headers .
|
ApiResponse<List<HumanTask>> |
HumanTaskApi.searchHumanTasksWithHttpInfo(Map<String,Object> queryParams) |
Finds HumanTasks
Finds HumanTasks with pagination params and filters - can order on `name`, `priority`, `dueDate`, `state`, `processDefinitionId`, `processInstanceId`, `parentActivityInstanceId`, `assigneeId`, `parentContainerId`, `displayName`, `reachedStateDate` - can search on any field that can be used to order results - can filter on `assigned_id`, `state`, `name`, `displayName`, `processDefinitionId`, `caseId`, `rootProcessInstanceId`, `parentProcessInstanceId`
Note, this is equivalent to the other searchHumanTasks that receives the query parameters as a map,
but this one also exposes the Http response headers
|