GET /bpm-engine/api/processes
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.
Meaning of HTTP status codes:
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Request Header | Content-Type: application/json | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Request Example | https://<host>/bpm-engine/api/processes?page=0&size=1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Response Example | { "objects": [ { "id": "00000000-0000-0000-0000-000000000000", "name": "testProcessInstanceName", "businessKey": "testBusinessKey", "processDefinitionId": "twosteptest_proc:4:8dc694a2-10b1-11ec-99ef-027ea5eeae02", "processDefinitionName": "Two tasks test process", "processDefinitionDescription": "Process shall be started with Web-API Gateway variable subject to be shown in the same column of the inbox and with . Both tasks to initiator.", "startUserId": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa", "startTime": "2021-11-01T12:28:46.363Z", "deleteReason": null, "endActivityId": null, "startActivityId": "startEvent1", "durationInMillis": null, "endTime": null, "suspended": false, "variables": [] } ], "numItems": 1, "totalNumItems": 1, "hasMoreItems": false } |