Skip to main content
POST
/
accounts
/
{account_id}
/
funnels
Criar Funil
curl --request POST \
  --url https://your-chatwoot.aifocus.dev/api/v1/accounts/{account_id}/funnels \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "name": "Pipeline de Vendas",
  "description": "Funil principal de vendas",
  "stages": [
    {
      "name": "<string>",
      "order": 123,
      "color": "<string>"
    }
  ]
}
'

Authorizations

api_access_token
string
header
required

Path Parameters

account_id
integer
required

Body

application/json
name
string
Example:

"Pipeline de Vendas"

description
string
Example:

"Funil principal de vendas"

stages
object[]

Response

201

Funil criado