retell_delete_conversation_flow
Remove a conversation flow from the Retell AI platform by specifying its ID to manage agent configurations.
Instructions
Delete a conversation flow.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_flow_id | Yes | The conversation flow ID to delete |
Implementation Reference
- src/index.ts:1225-1226 (handler)Executes the deletion by sending a DELETE request to the Retell API endpoint `/delete-conversation-flow/${conversation_flow_id}` using the shared retellRequest function.case "retell_delete_conversation_flow": return retellRequest(`/delete-conversation-flow/${args.conversation_flow_id}`, "DELETE");
- src/index.ts:874-887 (registration)Registers the tool in the tools array used for listing tools, including name, description, and input schema that validates the required 'conversation_flow_id' parameter.{ name: "retell_delete_conversation_flow", description: "Delete a conversation flow.", inputSchema: { type: "object", properties: { conversation_flow_id: { type: "string", description: "The conversation flow ID to delete" } }, required: ["conversation_flow_id"] } },
- src/index.ts:877-886 (schema)Input schema definition for the tool, specifying the required 'conversation_flow_id' string parameter.inputSchema: { type: "object", properties: { conversation_flow_id: { type: "string", description: "The conversation flow ID to delete" } }, required: ["conversation_flow_id"] }