Skip to main content
DELETE
/
chats
/
{chatGuid}
Delete a single chat
curl --request DELETE \
  --url https://api.arnio.co/api/v1/chats/{chatGuid} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Chat deleted successfully"
}
Delete a single chat thread using its unique chat GUID. This permanently removes the chat and all associated messages from the system.

Authorizations

X-API-Key
string
header
required

Provide your generated API Key.

Path Parameters

chatGuid
string
required

Chat GUID in the format -;

Response

Chat deleted successfully