Query user task variables (alpha)
POST/user-tasks/:userTaskKey/variables
Search for user task variables based on given criteria.
Note that this endpoint is an alpha feature and not enabled on Camunda clusters out of the box. The Camunda 8 API (REST) Overview page provides further details.
This endpoint is an alpha feature and may be subject to change in future releases.
Request
Path Parameters
The key of the user task.
- application/json
Body
- Array [
- ]
sort object[]
Default value: asc
page object
Responses
- 200
- 400
- 500
The user task variables search response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
page object
items object[]
The key for this variable.
Name of this variable.
Value of this variable.
Full value of this variable.
The key of the scope of this variable.
The key of the process instance of this variable.
Tenant ID of this variable.
Whether the value is truncated or not.
{
"items": [
{
"variableKey": 0,
"name": "string",
"value": "string",
"fullValue": "string",
"scopeKey": 0,
"processInstanceKey": 0,
"tenantId": "string",
"isTruncated": true
}
],
"page": {
"totalItems": 0,
"firstSortValues": [
{}
],
"lastSortValues": [
{}
]
}
}
The user task variables search query failed. More details are provided in the response body.
- application/problem+json
- Schema
- Example (from schema)
Schema
Default value: about:blank
A URI identifying the problem type.
A summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code for this problem.
An explanation of the problem in more detail.
A URI identifying the origin of the problem.
{
"type": "about:blank",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
An internal error occurred while processing the request.
- application/problem+json
- Schema
- Example (from schema)
Schema
Default value: about:blank
A URI identifying the problem type.
A summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code for this problem.
An explanation of the problem in more detail.
A URI identifying the origin of the problem.
{
"type": "about:blank",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}