Delete multiple messages

Delete list of messages base on their uuids

Endpoint

POST / api / v1 / messages / delete

Authorization

Authorization string Bearer <your_token>

Path

uuids string[] required

Request example

curl --location --request POST 'https://app.aichatbothub.com/api/v1/messages/delete' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
--data-raw '{
  "uuids": []
}'

Response

success boolean

Indicates if api call was successful

Response example

{
  "success": true
}

Last updated