List Process Executions

get

/process/api/v1/process-executions

List process executions for the current user. You can use this API function only on structured processes.

Request

Query Parameters
  • Restrict to instances that were created after the given date. The date must have the format yyyy-MM-dd'T'HH:mm:ss, e.g., 2013-01-23T14:42:45.
  • Restrict to instances that were created before the given date. The date must have the format yyyy-MM-dd'T'HH:mm:ss, e.g., 2013-01-23T14:42:45.
  • 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
  • The ID of the process activity that this object is an instance of.
  • Filter by process activity instance Id.
  • The name of the process activity that this object is an instance of.
  • The type of the activity this process execution belongs to.
  • Filter by process definition ID. Exact match
  • Filter by the ID of the process execution that executed the process activity instance.
  • Filter by process instance Id
  • Sort the results by a given criterion. Must be used in conjunction with the sortOrder parameter.
    Allowed Values: [ "executionId", "instanceId" ]
  • 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.
    Default Value: ASC
    Allowed Values: [ "ASC", "DESC" ]
Header Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ProcessExecutions
Type: object
Match All
Show Source
Nested Schema : CommonModel
Type: object
Show Source
Nested Schema : ProcessExecutions-allOf[1]
Type: object
Show Source
Nested Schema : PaginationResponse
Type: object
Pagination details
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : ProcessExecution
Match All
Show Source
Nested Schema : ProcessExecution-allOf[1]
Type: object
Show Source
Nested Schema : availableActions
Type: array
Show Source
Nested Schema : availablePermissions
Type: array
Show Source
Nested Schema : FaultData
Type: object
Show Source

401 Response

Unauthorized

404 Response

Returned if some of the query parameters are invalid, for example if a sortOrder parameter is supplied, but no sortBy

429 Response

Too many requests

500 Response

Internal server error

503 Response

Too many exceptions or too slow requests
Back to Top