Skip to main content
DELETE
/
agents
/
{agentId}
/
convos
/
{convoId}
Delete Conversation
curl --request DELETE \
  --url https://eu-gcp-api.vg-stuff.com/v3/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

The unique identifier of the agent

convoId
string
required

The unique identifier of the conversation

Response

Successful response

success
boolean
required
message
string
required