retell_delete_call
Remove a call and its associated data including recordings and transcripts from the Retell AI voice agent platform.
Instructions
Delete a call and all associated data including recordings and transcripts.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| call_id | Yes | The unique identifier of the call to delete |
Implementation Reference
- src/index.ts:1135-1136 (handler)Executes the retell_delete_call tool by sending a DELETE HTTP request to the Retell API endpoint `/v2/delete-call/{call_id}` using the provided call_id argument.case "retell_delete_call": return retellRequest(`/v2/delete-call/${args.call_id}`, "DELETE");
- src/index.ts:184-197 (schema)Defines the input schema, description, and registers the retell_delete_call tool in the tools array used for tool listing.{ name: "retell_delete_call", description: "Delete a call and all associated data including recordings and transcripts.", inputSchema: { type: "object", properties: { call_id: { type: "string", description: "The unique identifier of the call to delete" } }, required: ["call_id"] } },