List Process Instance Incidents

get

/process/api/v1/process-instances/{id}/incidents

List all the process instance incidents for a given instance ID.

Note:

You can use this API only on structured processes.

Request

Path Parameters
Query Parameters
  • Restricts to incidents that belong to an activity with the given ID.
  • Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left.
    Default Value: 25
  • Pagination of results. Specifies the index of the first result to return.
    Default Value: 0
  • Sort the results by a given criterion. Valid values are CREATEDTIME, ACTIVITYID. Must be used in conjunction with the sortOrder parameter.
    Allowed Values: [ "CREATEDTIME", "ACTIVITYID" ]
  • Sort the results in a given order. Values may be ASC for ascending order or DESC for descending order. Must be used in conjunction with the sortBy parameter.
    Allowed Values: [ "ASC", "DESC" ]
  • Specifies if total number of results need to be returned
    Default Value: false
Header Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ProcessInstanceIncidents
Match All
Show Source
Nested Schema : CommonModel
Type: object
Show Source
Nested Schema : ProcessInstanceIncidents-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : ProcessInstanceIncidentItem
Match All
Show Source
Nested Schema : ProcessInstanceIncidentItem-allOf[1]
Type: object
Show Source

401 Response

Unauthorized

404 Response

Process instance ID does not exist.

429 Response

Too many requests

500 Response

Internal server error

503 Response

Too many exceptions or too slow requests
Back to Top