Skip to main content
DELETE
/
chats
/
{id}
Delete Chat
curl --request DELETE \
  --url https://app.splox.io/api/v1/chats/{id} \
  --header 'Authorization: Bearer <token>'
Deletes a chat session by ID.

Usage

curl -X DELETE https://app.splox.io/api/v1/chats/0199f200-a11b-7c8d-4444-888890abcdef \
  -H "Authorization: Bearer YOUR_TOKEN"

Path Parameters

ParameterTypeDescription
idstring (uuid)Chat ID to delete

Response

Returns 204 No Content with an empty body on success.

Notes

Authentication required. The authenticated user must own the chat session.
This permanently deletes the chat session. Chat history (messages) is not automatically deleted — use Delete Chat History first if you want to clear messages.

Authorizations

Authorization
string
header
required

API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings

Path Parameters

id
string<uuid>
required

Chat ID

Response

Chat deleted successfully (empty body)