Skip to main content
POST
/
api
/
v1
/
contacts
/
fields
Create a new custom contact field
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/fields \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Customer Tier",
  "is_active": true,
  "type": "text",
  "is_required": false,
  "options": [
    "<string>"
  ]
}
'

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:

"Customer Tier"

is_active
boolean
Example:

true

type
string
Example:

"text"

is_required
boolean
Example:

false

options
string[]

Response

Custom contact field created