Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters
Filter by process instance id.
Only include historic details which belong to one of the passed comma-separated process instance ids.
Filter by execution id.
Filter by task id.
Filter by activity instance id.
Filter by case instance id.
Filter by case execution id.
Filter by variable instance id.
Filter by variable name like. Example usage: variableNameLike(%camunda%). The query will match the names of variables in a case-insensitive way.
Filter by a comma-separated list of tenant ids.
Only include historic details that belong to no tenant. Value may only be
true, as false is the default behavior.
Filter by a user operation id.
Only include HistoricFormFields. Value may only be true, as false is the default behavior.
Only include HistoricVariableUpdates. Value may only be true, as false is the default behavior.
Excludes all task-related HistoricDetails, so only items which have no task id set will be selected.
When this parameter is used together with taskId, this call is ignored and task details are not excluded.
Value may only be true, as false is the default behavior.
Restrict to historic variable updates that contain only initial variable values.
Value may only be true, as false is the default behavior.
Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter.
processInstanceId, variableName, variableType, variableRevision, formPropertyId, time, occurrence, 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 historic detail.
The type of the historic detail. Either formField for a submitted form field
value or variableUpdate for variable updates.
The key of the process definition that this historic detail belongs to.
The id of the process definition that this historic detail belongs to.
The id of the process instance the historic detail belongs to.
The id of the activity instance the historic detail belongs to.
The id of the execution the historic detail belongs to.
The key of the case definition that this historic detail belongs to.
The id of the case definition that this historic detail belongs to.
The id of the case instance the historic detail belongs to.
The id of the case execution the historic detail belongs to.
The id of the task the historic detail belongs to.
The id of the tenant that this historic detail belongs to.
The id of user operation which links historic detail with user operation log entries.
The process instance id of the root process instance that initiated the process containing this historic detail.
The id of the form field.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is formField.
The submitted form field value. The value differs depending on the form field's type
and on the deserializeValue parameter.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is formField.
The name of the variable which has been updated.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
The id of the associated variable instance.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
The value type of the variable.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
The variable's value. Value differs depending on the variable's type and on the deserializeValues parameter.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
A JSON object containing additional, value-type-dependent properties.
For variables of type Object, the following properties are returned:
objectTypeName: A string representation of the object's type name.serializationDataFormat: The serialization format used to store the variable.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
Returns true for variable updates that contains the initial values of the variables.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
The revision of the historic variable update.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.
An error message in case a Java Serialized Object could not be de-serialized.
Note: This property is only set for a HistoricVariableUpdate historic details.
In these cases, the value of the type property is variableUpdate.