List Process Executions

get

/process/api/v1/dp-executions

Retrieves the list of all the process executions for the current user.

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.SSSZ, e.g., 2013-01-23T14:42:45.000Z for UTC timezome.
  • Restrict to instances that were created before the given date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g., 2013-01-23T14:42:45.000Z for UTC timezome.
  • Restrict to instances that were ended after the given date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g., 2013-01-23T14:42:45.000Z for UTC timezome.
  • Restrict to instances that were ended before the given date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g., 2013-01-23T14:42:45.000Z for UTC timezome.
  • Only include finished process activity instances. Value may only be true, as false is the default behavior.
  • Maximum Value: 500
    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
  • Filter by parent process activity instance id
  • 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
  • Only include required process activity instances. Value may only be true, as false is the default behavior.
  • Sort the results by a given criterion. Valid values are processActivityInstanceId, processInstanceId, processExecutionId, processActivityId, processActivityName, processActivityType, processDefinitionId, createTime, endTime, duration. Must be used in conjunction with the sortOrder parameter.
    Default Value: processExecutionId
    Allowed Values: [ "processActivityInstanceId", "processInstanceId", "processExecutionId", "processActivityId", "processActivityName", "processActivityType", "processDefinitionId", "createTime", "endTime", "duration" ]
  • 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" ]
  • Filter by state.
  • If true return totalResults count for given queries with filters
    Default Value: false
  • Only include unfinished process activity instances. Value may only be true, as false is the default behavior.
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