Skip to main content
POST
/
crm
/
pipelines
Create Pipeline
curl --request POST \
  --url https://api.getoutbox.ai/crm/pipelines/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "stages": [
    {
      "name": "<string>",
      "is_closed_won": false,
      "is_closed_lost": false
    }
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

name
string
required
Minimum string length: 1
description
string
stages
object[]

Ordered list of stages. Stage order is taken from the array index.

Response

Pipeline created with stages.

{key}
any