Skip to main content

List Master Workflows

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

FieldTypeDescription
idstring (uuid)Unique master workflow identifier
namestringMaster workflow name
descriptionstring | nullMaster workflow description
is_activebooleanWhether the master workflow is active
created_atstring (date-time)When it was created
updated_atstring (date-time)When it was last updated

401 — Authentication error

See Authentication.

500 — Internal server error