Get variable by key
GEThttp://localhost:8080/v1/variables/:key
Get variable by key
Request​
Path Parameters
key int64required
Key of variable
Responses​
- 200
- 400
- 403
- 404
- 500
Success
- application/json
- Schema
- Example (auto)
Schema
keyint64
processInstanceKeyint64
scopeKeyint64
namestring
valuestring
truncatedboolean
tenantIdstring
{
"key": 0,
"processInstanceKey": 0,
"scopeKey": 0,
"name": "string",
"value": "string",
"truncated": true,
"tenantId": "string"
}
Invalid request
- application/problem+json
- Schema
- Example (auto)
Schema
statusint32
messagestring
instancestring
typestring
{
"status": 0,
"message": "string",
"instance": "string",
"type": "string"
}
Forbidden
- */*
- Schema
- Example (auto)
Schema
statusint32
messagestring
instancestring
typestring
{
"status": 0,
"message": "string",
"instance": "string",
"type": "string"
}
Requested resource not found
- application/problem+json
- Schema
- Example (auto)
Schema
statusint32
messagestring
instancestring
typestring
{
"status": 0,
"message": "string",
"instance": "string",
"type": "string"
}
API application error
- application/problem+json
- Schema
- Example (auto)
Schema
statusint32
messagestring
instancestring
typestring
{
"status": 0,
"message": "string",
"instance": "string",
"type": "string"
}
Authorization: http
name: bearer-keytype: httpscheme: bearerbearerFormat: JWT
- curl
- java
- nodejs
- csharp
- python
- go
- CURL
curl -L 'http://localhost:8080/v1/variables/:key' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'