List Master Workflows
/master-workflows
List all active master workflows for your account.
Example
curl https://api.getnexor.ai/api/public/master-workflows \
-H "X-API-Key: nxr_live_your_api_key"
Responses
200 — Successful response
{
"success": true,
"master_workflows": [
{
"id": "uuid",
"name": "Real Estate Pipeline",
"description": "Groups prospecting and closing workflows",
"is_active": true,
"created_at": "2026-01-15T10:00:00Z",
"updated_at": "2026-02-01T08:30:00Z"
}
]
}
Response Fields — Master Workflow
| Field | Type | Description |
|---|---|---|
id | string (uuid) | Unique master workflow identifier |
name | string | Master workflow name |
description | string | null | Master workflow description |
is_active | boolean | Whether the master workflow is active |
created_at | string (date-time) | When it was created |
updated_at | string (date-time) | When it was last updated |
401 — Authentication error
See Authentication.