cURL
curl --request PATCH \ --url https://api.kajabi.com/v1/contact_notes/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/vnd.api+json' \ --data ' { "data": { "id": "<string>", "type": "contact_notes", "attributes": { "body": "<string>" } } } '
{ "data": { "id": "<string>", "type": "contact_notes", "attributes": { "body": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }, "relationships": { "contact": { "data": { "id": "<string>", "type": "<string>" } } } }, "links": { "self": "<string>", "current": "<string>" } }
Updates an existing contact note. Only the note body can be updated.
Updatable Attributes:
body
Contact relationship cannot be changed after creation.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Show child attributes
Contact note updated successfully
Was this page helpful?