Skip to main content

DELETE /messages/:uuid

caution

This endpoint will remove text and attachments only on Callbell. It will not affect the original message sent on the device of the customer.

Deletes a message by its UUID or external ID.

You can find the external ID in the uuid field of the MessageSendRequest object or by using the GET /contacts/:uuid/messages endpoint.

Required Parameters

ParameterTypeDescription
uuidStringIdentifier of the message which was sent through API.

Example Request

curl -X DELETE "https://api.callbell.eu/v1/messages" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json" \
-d '{
"uuid": "1da07a20eb0d46728f89d234a727607a"
}'

Response

API returns a 204 No Content status code on successful deletion.