List Data Objects

get

/process/api/v1/audit/instances/{instanceId}/data-objects

Lists the data objects for a process instance.

Request

Path Parameters
Query Parameters
  • Restrict the list of data objects that belong to activities with an activity instance id that is in the given set of activity instance ids. This must be a comma-separated list of data types.
  • Restrict the result to the data objects that have the given process definition id.
  • Restrict the result to the data objects that have the given process definition key.
  • Restrict the result to the data objects that have an execution id that is in the set of given execution ids. This must be a comma-separated list of data types.
  • Enables the result to contian data objects that have been deleted during execution.
  • Maximum Value: 50
    The number of items to return. If parameter is omitted default value 25 is set. If limit <=0 or limit> 50 then upto 50 records are returned
    Default Value: 25
  • 0 based index. The number of items to skip before starting to collect the result set.
    Default Value: 0
  • This parameter specifies the order by clause. The value must follow the format of fieldName[:(asc/desc)][,fieldName[:(asc/desc)]]*. e.g. variableName:asc. Multiple ordering is not supported. The only supported attribute is variableName
  • Enable the data object values for large data objects to be returned. This is defaulted to false to prevent potentially large data from being returned.
    Default Value: true
  • Restrict the list of data objects that belong to user tasks with a task id that is in the set of given task ids. This must be a comma-separated list of data types.
  • If true return total count of records for given query with filters
    Default Value: false
  • Search for the data object that is identified by the given variable instance id.
  • Restrict the result to the data objects that have the given variable name.
  • Restrict the result to the data objects whose name contains the given substring of a variable name.
  • Restrict the result to the data objects that are one of the variable data types. This must be a comma-separated list of data types.
    Allowed Values: [ "boolean", "bytes", "short", "integer", "long", "double", "date", "stirng", null, "file", "object", "json", "xml" ]
  • Restrict the result to primitive data objects with certain values equal to the given variable value.
Header Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : AuditProcessVariables
Match All
Show Source
Nested Schema : CommonModel
Type: object
Show Source
Nested Schema : ListPagination
Type: object
A common structure for helping a client with pagination
Show Source
  • The count of elements that are returned in the current this will be equal to or less than the "limit" parameter
  • The maximum number of elements to be returned. This will correspond to the "limit" query parameter
  • The index number of the first element for the list. This will correspond to the "offset" query parameter value
  • The total number of elements in the list for the applied filters - not including the "limit" parameter
Nested Schema : AuditProcessVariables-allOf[2]
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : AuditVariable
The variable for a process instance
Match All
The variable for a process instance
The variable for a process instance
Show Source
Nested Schema : AuditVariable-allOf[1]
Type: object
Show Source

201 Response

There are no activities for the process instance id

401 Response

Unauthorized

404 Response

The process instance 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