Nurama Developers

delete_convo

DESTRUCTIVE — confirm with the user before calling.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

DESTRUCTIVE — confirm with the user before calling. Restate the target (id + a human descriptor) and wait for explicit approval; do not invoke from inferred intent. No undo. Delete a live conversation (active or completed). Removes the convo record, its recordings, and transcripts. Prefer complete_convo to end a call gracefully — that preserves the recording asset for later review.

Input

PropertyTypeRequiredDescription
convoIdstringyesUUID of the convo.

JSON Schema

{
  "type": "object",
  "properties": {
    "convoId": {
      "type": "string",
      "description": "UUID of the convo."
    }
  },
  "required": [
    "convoId"
  ],
  "additionalProperties": false
}

On this page