ApiResponse<ProcessInstance> |
ProcessInstanceApi.createProcessInstanceWithHttpInfo(ProcessInstanceCreateRequest body) |
Create the ProcessInstance
Similar to createProcessInstance but it also returns the http response headers .
|
ApiResponse<ProcessInstance> |
ProcessInstanceApi.getProcessInstanceByIdWithHttpInfo(String id,
String n) |
Finds the ProcessInstance by ID
Similar to getProcessInstanceById but it also returns the http response headers .
|
ApiResponse<ProcessInstance> |
ProcessInstanceApi.getProcessInstanceByIdWithHttpInfo(String id,
Map<String,Object> queryParams) |
Finds the ProcessInstance by ID
Returns the single ProcessInstance for the given ID
Note, this is equivalent to the other getProcessInstanceById that receives the query parameters as a map,
but this one also exposes the Http response headers
|
List<ProcessInstance> |
ProcessInstanceApi.searchProcessInstances(Integer p,
Integer c,
List<String> f,
String o) |
Finds ProcessInstances
Finds ProcessInstances with pagination params and filters You can filter on: * `processDefinitionId`: The process derfinition ID * `name`: the process name * `started_by`: the ID of the user who started the process * `team_manager_id`: allow to retrieve the process instances in which all users with this manager ID ar involved) * `supervisor_id`: allow the retrived the process instances of all processes the user with this ID is supervisor of) beware you cannot use team_manager_id and supervisor_id at the same time
|
List<ProcessInstance> |
ProcessInstanceApi.searchProcessInstances(Map<String,Object> queryParams) |
Finds ProcessInstances
Finds ProcessInstances with pagination params and filters You can filter on: * `processDefinitionId`: The process derfinition ID * `name`: the process name * `started_by`: the ID of the user who started the process * `team_manager_id`: allow to retrieve the process instances in which all users with this manager ID ar involved) * `supervisor_id`: allow the retrived the process instances of all processes the user with this ID is supervisor of) beware you cannot use team_manager_id and supervisor_id at the same time
Note, this is equivalent to the other searchProcessInstances method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ProcessInstance>> |
ProcessInstanceApi.searchProcessInstancesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o) |
Finds ProcessInstances
Similar to searchProcessInstances but it also returns the http response headers .
|
ApiResponse<List<ProcessInstance>> |
ProcessInstanceApi.searchProcessInstancesWithHttpInfo(Map<String,Object> queryParams) |
Finds ProcessInstances
Finds ProcessInstances with pagination params and filters You can filter on: * `processDefinitionId`: The process derfinition ID * `name`: the process name * `started_by`: the ID of the user who started the process * `team_manager_id`: allow to retrieve the process instances in which all users with this manager ID ar involved) * `supervisor_id`: allow the retrived the process instances of all processes the user with this ID is supervisor of) beware you cannot use team_manager_id and supervisor_id at the same time
Note, this is equivalent to the other searchProcessInstances that receives the query parameters as a map,
but this one also exposes the Http response headers
|