Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters
Filter by variable name.
Restrict to variables with a name like the parameter.
Filter by variable value. Is treated as a String object on server side.
Match the variable name provided in variableName and variableNameLike case-
insensitively. If set to true variableName and variablename are
treated as equal.
Match the variable value provided in variableValue case-insensitively. If set to true
variableValue and variablevalue are treated as equal.
Include variables that has already been deleted during the execution.
Filter by the process instance the variable belongs to.
Only include historic variable instances which belong to one of the passed and comma-separated process instance ids.
Filter by the process definition the variable belongs to.
Filter by a key of the process definition the variable belongs to.
Only include historic variable instances which belong to one of the passed and and comma-separated execution ids.
Filter by the case instance the variable belongs to.
Only include historic variable instances which belong to one of the passed and and comma-separated case execution ids.
Only include historic variable instances which belong to one of the passed and and comma-separated case activity ids.
Only include historic variable instances which belong to one of the passed and and comma-separated task ids.
Only include historic variable instances which belong to one of the passed and and comma-separated activity instance ids.
Only include historic variable instances which belong to one of the passed and comma- separated tenant ids.
Only include historic variable instances that belong to no tenant. Value may only be
true, as false is the default behavior.
Only include historic variable instances which belong to one of the passed and comma-separated variable names.
Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter.
instanceId, variableName, tenantId 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.
asc, desc 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 less results if there are no more results left.
Determines whether serializable variable values (typically variables that
store custom Java objects) should be deserialized on server side (default
true).
If set to true, a serializable variable will be deserialized on server side
and transformed to JSON using
Jackson's POJO/bean property
introspection feature. Note that this requires the Java classes of the
variable value to be on the REST API's classpath.
If set to false, a serializable variable will be returned in its serialized
format. For example, a variable that is serialized as XML will be returned as
a JSON string containing XML.
Note: While true is the default value for reasons of backward
compatibility, we recommend setting this parameter to false when developing
web applications that are independent of the Java process applications
deployed to the engine.
Response
Request successful.
The id of the variable instance.
The name of the variable instance.
The key of the process definition the variable instance belongs to.
The id of the process definition the variable instance belongs to.
The process instance id the variable instance belongs to.
The execution id the variable instance belongs to.
The id of the activity instance in which the variable is valid.
The key of the case definition the variable instance belongs to.
The id of the case definition the variable instance belongs to.
The case instance id the variable instance belongs to.
The case execution id the variable instance belongs to.
The id of the task the variable instance belongs to.
The id of the tenant that this variable instance belongs to.
An error message in case a Java Serialized Object could not be de-serialized.
The current state of the variable. Can be 'CREATED' or 'DELETED'.
The time the variable was inserted. Default format yyyy-MM-dd'T'HH:mm:ss.SSSZ.
The time after which the variable should be removed by the History Cleanup job.
Default format yyyy-MM-dd'T'HH:mm:ss.SSSZ.
The process instance id of the root process instance that initiated the process containing this variable.
Can be any value - string, number, boolean, array or object. Note: Not every endpoint supports every type.
The value type of the variable.
A JSON object containing additional, value-type-dependent properties. For serialized variables of type Object, the following properties can be provided:
objectTypeName: A string representation of the object's type name.serializationDataFormat: The serialization format used to store the variable.
For serialized variables of type File, the following properties can be provided:
filename: The name of the file. This is not the variable name but the name that will be used when downloading the file again.mimetype: The MIME type of the file that is being uploaded.encoding: The encoding of the file that is being uploaded.
The following property can be provided for all value types:
transient: Indicates whether the variable should be transient or not. See documentation for more informations. (Not applicable fordecision-definition,/process-instance/variables-async, and/migration/executeAsyncendpoints)