Skip to main content
POST
/
api
/
v1
/
contacts
/
pipeline
Create a new pipeline stage
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/pipeline \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Lead",
  "order": 1,
  "is_active": true
}
'

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Body

application/json
name
string
required
Required string length: 2 - 255
Example:

"Lead"

order
integer
Required range: x >= 1
Example:

1

is_active
boolean
Example:

true

Response

Pipeline stage created