Skip to main content
POST
/
api
/
contact-notes
/
{noteId}
/
reaction
Toggle reaction on a contact note
curl --request POST \
  --url https://your-instance.example.com/api/contact-notes/{noteId}/reaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emoji": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

noteId
string
required

Body

application/json
emoji
string
required

Response

Reaction toggled

Generic response envelope. Endpoint-specific fields are intentionally open.