GET
/
variables
/
{variableId}
curl --request GET \
  --url https://eu-voiceglow-runtime-vbmbkqccuq-ey.a.run.app/v3/variables/{variableId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "in": "<string>",
    "type": "string",
    "value": "<any>",
    "defaultValue": "<any>",
    "key": "<string>",
    "description": "<string>",
    "required": true,
    "reusable": true,
    "isEnv": true,
    "isSystem": true,
    "isGlobal": true,
    "agentId": "<string>",
    "userId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

variableId
string
required

Response

200
application/json
Successful response
success
boolean
required
message
string
required
data
object
required