retell_update_conversation_flow
Modify conversation flows in Retell AI's voice and chat agent platform by updating nodes and edges to adjust agent behavior.
Instructions
Update a conversation flow.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_flow_id | Yes | The conversation flow ID to update | |
| name | No | New name | |
| nodes | No | Updated nodes | |
| edges | No | Updated edges |
Implementation Reference
- src/index.ts:1221-1224 (handler)Handler implementation for the 'retell_update_conversation_flow' tool. It extracts the conversation_flow_id from arguments and sends a PATCH request to the Retell API endpoint `/update-conversation-flow/{conversation_flow_id}` with the remaining update data.case "retell_update_conversation_flow": { const { conversation_flow_id, ...flowUpdateData } = args; return retellRequest(`/update-conversation-flow/${conversation_flow_id}`, "PATCH", flowUpdateData as Record<string, unknown>); }
- src/index.ts:848-873 (schema)Tool schema definition for 'retell_update_conversation_flow', including input schema with properties for conversation_flow_id (required), name, nodes, and edges.{ name: "retell_update_conversation_flow", description: "Update a conversation flow.", inputSchema: { type: "object", properties: { conversation_flow_id: { type: "string", description: "The conversation flow ID to update" }, name: { type: "string", description: "New name" }, nodes: { type: "array", description: "Updated nodes" }, edges: { type: "array", description: "Updated edges" } }, required: ["conversation_flow_id"] } },