Skip to main content
PUT
/
v1
/
contacts
/
{identifier}
/
custom-fields
Set multiple custom field values for a contact
curl --request PUT \
  --url https://app.chatbotx.io/api/v1/contacts/{identifier}/custom-fields \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fields": [
    {
      "customFieldId": "<string>",
      "value": "<string>"
    }
  ]
}
'
"<unknown>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

identifier
string
required
Minimum string length: 1

Body

application/json
fields
object[]
required
Required array length: 1 - 20 elements

Response

204 - application/json

OK

The response is of type any.