ApiResponse<ArchivedProcessInstance> |
ArchivedProcessInstanceApi.getArchivedProcessInstanceByIdWithHttpInfo(String id) |
Finds the ArchivedProcessInstance by ID
Similar to getArchivedProcessInstanceById but it also returns the http response headers .
|
List<ArchivedProcessInstance> |
ArchivedProcessInstanceApi.searchArchivedProcessInstances(Integer p,
Integer c,
List<String> f,
String o) |
Finds ArchivedProcessInstances
Finds archived ProcessInstances (or ProcessInstance) with pagination params and filters You can order on `id`, `processDefinitionId`, `startedBy`, `startedBySubstitute`, `startDate`, `endDate`, `lastUpdate`, `archivedDate`, `sourceObjectId` You can filter on : * `sourceObjectId`: The original process instance ID before the process instance was archived * `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<ArchivedProcessInstance> |
ArchivedProcessInstanceApi.searchArchivedProcessInstances(Map<String,Object> queryParams) |
Finds ArchivedProcessInstances
Finds archived ProcessInstances (or ProcessInstance) with pagination params and filters You can order on `id`, `processDefinitionId`, `startedBy`, `startedBySubstitute`, `startDate`, `endDate`, `lastUpdate`, `archivedDate`, `sourceObjectId` You can filter on : * `sourceObjectId`: The original process instance ID before the process instance was archived * `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 searchArchivedProcessInstances method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<ArchivedProcessInstance>> |
ArchivedProcessInstanceApi.searchArchivedProcessInstancesWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o) |
Finds ArchivedProcessInstances
Similar to searchArchivedProcessInstances but it also returns the http response headers .
|
ApiResponse<List<ArchivedProcessInstance>> |
ArchivedProcessInstanceApi.searchArchivedProcessInstancesWithHttpInfo(Map<String,Object> queryParams) |
Finds ArchivedProcessInstances
Finds archived ProcessInstances (or ProcessInstance) with pagination params and filters You can order on `id`, `processDefinitionId`, `startedBy`, `startedBySubstitute`, `startDate`, `endDate`, `lastUpdate`, `archivedDate`, `sourceObjectId` You can filter on : * `sourceObjectId`: The original process instance ID before the process instance was archived * `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 searchArchivedProcessInstances that receives the query parameters as a map,
but this one also exposes the Http response headers
|