Skip to main content
PUT
/
api
/
v1
/
contacts
/
fields
/
{key}
Update a custom contact field (name, is_active, etc.)
curl --request PUT \
  --url https://{subdomain}.mihu.ai/api/v1/contacts/fields/{key} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "is_active": true,
  "type": "<string>",
  "is_required": true,
  "order": 123,
  "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}"

Path Parameters

key
string
required

Body

application/json
name
string
Required string length: 2 - 255
is_active
boolean
type
string
is_required
boolean
order
integer
options
string[]

Response

Custom contact field updated