Passa al contenuto principale

POST /contacts/:uuid/conversation/note

Creates a note on the conversation associated to the contact.

Required Parameters

ParameterTypeDescription
textstringThe text that'll be saved as a note in the conversation. Use @ to tag someone in the note.

Example Request

curl -X POST "https://api.callbell.eu/v1/contacts/414a6d692bd645ed803f2e7ce360d4c8/conversation/note" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json" \
-d '{ "text": "Hey @john.doe, look here!" }'

Response

ParameterTypeDescription
successBooleanThe success response

Example Response

response.json
{ "success": true }