Saltar al contenido principal
POST
/
master-workflows
Create master workflow
curl --request POST \
  --url https://api.getnexor.ai/api/public/master-workflows \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "Real Estate Pipeline",
  "description": "Groups prospecting and closing workflows"
}
'
{
  "success": true,
  "master_workflow": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Real Estate Pipeline",
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "description": "Groups prospecting and closing workflows"
  }
}

Autorizaciones

X-API-Key
string
header
requerido

API key for authentication. Keys are prefixed with nxr_live_.

Cuerpo

application/json
name
string
requerido

Master workflow name

Ejemplo:

"Real Estate Pipeline"

description
string | null

Master workflow description

Ejemplo:

"Groups prospecting and closing workflows"

Respuesta

Master workflow created successfully

success
boolean
requerido
Ejemplo:

true

master_workflow
object
requerido
Última modificación el 18 de junio de 2026