Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
The id of the detail.
Query Parameters
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.