List Workflows
/workflows
List all active workflows for your account. Use the workflow id when creating leads to assign them to a specific workflow.
Example
curl https://api.getnexor.ai/api/public/workflows \
-H "X-API-Key: nxr_live_your_api_key"
Responses
200 — Successful response
{
"success": true,
"workflows": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Sales Outreach",
"description": "Multi-channel sales cadence",
"cadence_enabled": true,
"created_at": "2026-01-15T10:00:00Z"
}
]
}
Response Fields — Workflow
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique workflow identifier |
name | string | Workflow name |
description | string | null | Workflow description |
cadence_enabled | boolean | Whether the cadence automation is enabled |
created_at | string (date-time) | When the workflow was created |
401 — Authentication error
See Authentication.