Skip to main content
DELETE
/
agents
/
{agentId}
/
convos
/
{convoId}
Delete Conversation
curl --request DELETE \
  --url https://eu-cloudflare.vg-stuff.com/agents/{agentId}/convos/{convoId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>"
}

Example Response

{
  "success": true,
  "message": "Conversation deleted successfully"
}

Notes

  • This action is irreversible
  • Deletes the conversation and all associated data (turns, sessions)
  • You must own the agent to delete its conversations
  • Consider exporting the conversation first if you need a backup

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agentId
string
required
convoId
string
required

Response

Successful response

success
boolean
required
message
string
required