Skip to main content
PATCH
/
api
/
contact-notes
/
{noteId}
Update a contact note
curl --request PATCH \
  --url https://your-instance.example.com/api/contact-notes/{noteId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "<string>",
  "mentions": [
    "<string>"
  ],
  "attachments": [
    {
      "key": "<string>",
      "name": "<string>",
      "size": 123,
      "type": "<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
note
string
mentions
string[]
attachments
object[]

Response

Contact note updated

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