Get Master Workflow
/master-workflows/{id}
Get a single master workflow by ID, including its associated workflows.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (uuid) | Yes | Master workflow ID |
Example
curl https://api.getnexor.ai/api/public/master-workflows/123e4567-e89b-12d3-a456-426614174000 \
-H "X-API-Key: nxr_live_your_api_key"
Responses
200 — Successful response
{
"success": true,
"master_workflow": {
"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",
"workflows": [
{
"id": "uuid",
"name": "Prospecting",
"description": "Initial outreach workflow",
"is_active": true,
"created_at": "2026-01-15T10:00:00Z"
},
{
"id": "uuid",
"name": "Closing",
"description": "Final stage workflow",
"is_active": true,
"created_at": "2026-01-20T14:00:00Z"
}
]
}
}
401 — Authentication error
See Authentication.