Skip to main content
POST
/
task
/
{id}
/
bpmnEscalation
Handle BPMN Escalation
curl --request POST \
  --url http://{host}:{port}/{contextPath}/task/{id}/bpmnEscalation \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "escalationCode": "bpmn-escalation-432",
  "variables": {
    "aVariable": {
      "value": "aStringValue",
      "type": "String"
    },
    "anotherVariable": {
      "value": true,
      "type": "Boolean"
    }
  }
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the task in which context a BPMN escalation is reported.

Body

application/json
escalationCode
string | null

An escalation code that indicates the predefined escalation. It is used to identify the BPMN escalation handler.

variables
object | null

A JSON object containing variable key-value pairs.

Response

Request successful.