cURL
curl --request POST \ --url https://your-instance.example.com/api/contact-notes \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "contactId": "<string>", "note": "<string>", "mentions": [ "<string>" ], "attachments": [ { "key": "<string>", "name": "<string>", "size": 123, "type": "<string>" } ] } '
{}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Show child attributes
Contact note created
Generic response envelope. Endpoint-specific fields are intentionally open.