Get a List of Dynamic Process Executions

get

/ic/api/process/v1/dp-executions

Get a list of dynamic process executions that the user can access.

Request

Supported Media Types
Query Parameters
  • Restrict to instances that were created after the specified date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ. For example, 2013-01-23T14:42:45.000Z for UTC timezone.
  • Restrict to instances that were created before the specified date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ. For example, 2013-01-23T14:42:45.000Z for UTC timezone.
  • Restrict to instances that ended after the specified date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ. For example, 2013-01-23T14:42:45.000Z for UTC timezone.
  • Restrict to instances that ended before the specified date. The date must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ. For example, 2013-01-23T14:42:45.000Z for UTC timezone.
  • Only include finished process activity instances. Value may only be true, as false is the default behavior.
  • Pagination of results. Specifies the index of the first result to return.
  • Pagination of results. Specifies the maximum number of results to return. Will return fewer results if there are no more results left.
  • 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 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.
  • Sort the results in a specified order. Values are asc for ascending order, or desc for descending order. Must be used in conjunction with the sortBy parameter.
  • Filter by state.
  • Only include unfinished process activity instances. Value may only be true, as false is the default behavior.
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
Discriminator: links
Show Source
Nested Schema : ProcessExecutions-allOf[1]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : ProcessExecution
Type: object
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

401 Response

Unauthorized.

404 Response

Returned if some of the query parameters are not valid. For example, if a sortOrder parameter is supplied, but no sortBy.

500 Response

Internal Server Error.
Back to Top