Skip to main content
DELETE
/
v1
/
chat
/
{chatId}
curl -X DELETE https://api.vouchmark.com/v1/chat/chat_aBcD... \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "message": "Chat deleted successfully",
  "data": null
}
Permanently deletes a chat and all of its messages. Only the chat’s owner can delete it.
Vouch AI endpoints require a positive wallet balance.

Path parameters

chatId
string
required
The chat session ID.
curl -X DELETE https://api.vouchmark.com/v1/chat/chat_aBcD... \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "message": "Chat deleted successfully",
  "data": null
}
Returns 404 with { "success": false, "message": "Chat not found" } if the chat does not exist or is not yours.