v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Workflow Variables

List all workflow variables

Lists all workflow variables including defaults. Requires a USER API key.

get/public/v1/workflows/{workflowId}/variables/all

Path parameters

workflowIdnumber nullable
Example:501

Response

Variables

idnumber required
namestring required
descriptionstring nullable
status'ACTIVE' | 'DELETED' required
createdAtstring required
updatedAtstring required
assistantIdstring nullable
automationIdnumber nullable
patternstring nullable
defaultValuestring nullable
isDefaultboolean required

Example response

[
  {
    "id": 123,
    "name": "customer_name",
    "description": "example",
    "status": "ACTIVE",
    "createdAt": "2024-01-01T12:00:00Z",
    "updatedAt": "2024-01-01T12:00:00Z",
    "assistantId": "example",
    "automationId": 1,
    "pattern": "example",
    "defaultValue": "example"
  }
]