Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
funnels
/
{id}
/
stages
Create a pipeline stage
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/funnels/{id}/stages \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "name": "Qualification",
  "color": "#2196F3",
  "position": 2,
  "chatwoot_status": "open"
}
'
{
  "id": 7,
  "funnel_id": 3,
  "name": "Qualification",
  "color": "#2196F3",
  "position": 2,
  "chatwoot_status": "open",
  "cards_count": 8,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

API access token for authentication. Obtain from your Voxys Connect profile settings.

Path Parameters

account_id
integer
required

The numeric ID of the account.

id
integer
required

The ID of the pipeline.

Body

application/json
name
string
required
Example:

"Qualification"

color
string | null
Example:

"#2196F3"

position
integer | null
Example:

2

chatwoot_status
enum<string> | null
Available options:
open,
resolved,
pending
Example:

"open"

Response

Stage created.

id
integer
Example:

7

funnel_id
integer
Example:

3

name
string
Example:

"Qualification"

color
string | null
Example:

"#2196F3"

position
integer
Example:

2

chatwoot_status
enum<string> | null
Available options:
open,
resolved,
pending,
null
Example:

"open"

cards_count
integer
Example:

8

created_at
string<date-time>
updated_at
string<date-time>