Skip to main content
PUT
/
v1
/
bot
/
crm
/
fields
/
{field_id}
Update CRM Custom Field
curl --request PUT \
  --url https://api.boostgpt.co/v1/bot/crm/fields/{field_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "bot_id": "<string>",
  "label": "<string>",
  "field_type": "text",
  "options": [
    "<string>"
  ],
  "required": true,
  "is_required": true
}
'
{
  "field": {
    "uuid": "<string>",
    "label": "<string>",
    "field_key": "<string>",
    "field_type": "text",
    "options": [
      "<string>"
    ],
    "required": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.boostgpt.co/llms.txt

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

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

field_id
string
required

Field ID

Body

application/json
project_id
string
required
bot_id
string
required
label
string
required
field_type
enum<string>
Available options:
text,
number,
date,
boolean,
select,
json
options
string[]
required
boolean
is_required
boolean

Response

Success

field
object