Skip to main content
Glama

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
NameRequiredDescriptionDefault
conversation_flow_idYesThe conversation flow ID to delete

Implementation Reference

  • 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"] } },
  • 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"] }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/itsanamune/retellsimp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server