Skip to main content
POST
/
api
/
contacts
/
{id}
/
execute-custom-fields
/
all
Execute custom fields across contact, conversations and applications
curl --request POST \
  --url https://your-instance.example.com/api/contacts/{id}/execute-custom-fields/all \
  --header 'Authorization: Bearer <token>'
{
  "contact": {},
  "conversations": [
    {}
  ],
  "applications": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Custom fields executed

contact
object
conversations
object[]
applications
object[]