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

Body

uuids
string[]
required

Messages uuids

Response

success
boolean

Indicates if api call was successful

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