Skip to main content

List Workflows

GET /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

FieldTypeDescription
idstring (uuid)Unique workflow identifier
namestringWorkflow name
descriptionstring | nullWorkflow description
cadence_enabledbooleanWhether the cadence automation is enabled
created_atstring (date-time)When the workflow was created

401 — Authentication error

See Authentication.

500 — Internal server error