Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
funnels
/
{id}
/
stages
/
reorder
Reorder pipeline stages
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/funnels/{id}/stages/reorder \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "stage_ids": [
    7,
    8,
    9,
    10,
    11
  ]
}
'
[
  {
    "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
stage_ids
integer[]
required

Ordered list of stage IDs representing the new order.

Example:
[7, 8, 9, 10, 11]

Response

Stages reordered.

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>