curl --request DELETE \
--url https://app.splox.io/api/v1/chat-history/{chatId} \
--header 'Authorization: Bearer <token>'{
"message": "<string>"
}Deletes all message history for a chat session. The chat session itself is preserved.
curl --request DELETE \
--url https://app.splox.io/api/v1/chat-history/{chatId} \
--header 'Authorization: Bearer <token>'{
"message": "<string>"
}curl -X DELETE https://app.splox.io/api/v1/chat-history/0199f200-a11b-7c8d-4444-888890abcdef \
-H "Authorization: Bearer YOUR_TOKEN"
| Parameter | Type | Description |
|---|---|---|
chatId | string (uuid) | Chat ID |
{
"message": "Chat history deleted successfully"
}
chat_history message rows for the chat. The chat session itself and any node-level memory are not affected.API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings
Chat ID
Chat history deleted successfully