Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 4
Next »
As of Version | product version 2021 Autumn | component version |
---|
Request Method | GET |
---|
Response Format | JSON |
---|
Description | Retrieves a list of processes of the currently active user that are matching the conditions defined in various query parameters. The following query parameters can optionally be added to the request URL. Parameter | Type | Description |
---|
businessKey | string | Only return process instances with the given businessKey . | businessKeyLike | string | Specify a string that has to match the businessKey and that can contain % characters as placeholders for an arbitrary number of unknown characters. | excludeSubprocesses | boolean | Return only process instances which are not sub-processes. | includeProcessVariables | boolean | Include process variables in the result. | involvedUser | string | Only return process instances in which the given user is involved. | name | string | Only return process instances with the given name. | nameLike | string | Only return process instances with a name like the given name. | page | integer($int32) | Result page you want to retrieve (0…N). Default is 0 which means the first page. | processDefinitionCategory | string | Only return process instances with the given process definition category. | processDefinitionId | string | Only return process instances with the given process definition ID. | processDefinitionKey | string | Only return process instances with the given process definition key. | processDefinitionVersion | integer | Only return process instances with the given process definition version. | size | integer($int32) | Number of objects per page. | sort | string | Sorting of results either ascending (asc ) or descending (desc ). Default sort order is ascending. | startedAfter | string | Only return process instances started after the given date. | startedBefore | string | Only return process instances started before the given date. | startedBy | string | Only return process instances started by the given user. | subProcessInstanceId | string | Only return process instances which have the given sub-process instance ID (for processes started as a call activity). | superProcessInstanceId | string | Only return process instances which have the given super process instance ID (for processes that have a call activity). | suspended | boolean | If true , only suspended process definitions are returned. If false , only active process definitions (which are not suspended) are returned. |
Meaning of HTTP status codes: HTTP Status Code | Description |
---|
200 | Request was successful and the process definitions are returned. | 400 | A parameter was passed in the wrong format or latest is used with parameters other than key and keyLike . The status message contains additional information. | 401 | The calling user is not authorized. |
|
---|
Request Header | Content-Type: application/json |
---|
Request Example | https://<host>/bpm-engine/api/processes?page=0&size=1 |
---|
Response Example |
{
"hasMoreItems": true,
"numItems": 50,
"objects": [
{
"businessKey": "myBusinessKey",
"completed": true,
"id": 187,
"name": "myProcessInstanceName",
"processDefinitionDescription": "A process definition description",
"processDefinitionId": "oneTaskProcess:1:00000000-0000-0000-0000-000000000000",
"processDefinitionName": "A process definition name",
"startTime": "2018-04-17T10:17:43.902+0000",
"startUserId": "user0001",
"suspended": true,
"variables": [
{
"name": "myVariable",
"scope": "myScope",
"type": "myType",
"value": "test",
"valueUrl": "http://...."
}
]
}
],
"totalNumItems": 1234
}
|
---|