curl --request GET \
--url https://api.open.cx/workflows \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"workflow_id": "<string>",
"name": "<string>",
"description": "<string>",
"is_active": true,
"trigger_type": "<string>",
"version_number": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]List all workflows in your organization (latest version of each). Workflows automate multi-step processes triggered by events, schedules, webhooks, or manual action.
curl --request GET \
--url https://api.open.cx/workflows \
--header 'Authorization: Bearer <token>'[
{
"id": 123,
"workflow_id": "<string>",
"name": "<string>",
"description": "<string>",
"is_active": true,
"trigger_type": "<string>",
"version_number": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
Version serial ID
Workflow UUID (groups all versions of the same workflow)
Workflow name
Workflow description
Whether this version is currently active
Trigger type: "manual-trigger", "ai-trigger", "cron-trigger", "webhook", "form-trigger", or event-based triggers
Version number (increments with each edit)
Was this page helpful?