List shared conversation flow components

get/list-conversation-flow-components

Response

Successfully listed conversation flow components

namestring required

Name of the component

flex_modeboolean nullable

If enabled, the whole component will be converted as a Single Prompt agent.

start_node_idstring nullable

ID of the starting node

conversation_flow_component_idstring required

Unique identifier for the component

user_modified_timestampinteger required

Timestamp of last user modification

linked_conversation_flow_idsstring[]

IDs of conversation flows linked to this shared component

Example response

[
  {
    "name": "Customer Information Collector",
    "tools": [
      {
        "type": "custom",
        "name": "get_customer_info",
        "description": "Get customer information from database",
        "tool_id": "tool_001",
        "url": "https://api.example.com/customer",
        "method": "GET"
      }
    ],
    "mcps": [
      {
        "headers": {
          "Authorization": "Bearer 1234567890"
        },
        "query_params": {
          "index": "1",
          "key": "value"
        }
      }
    ],
    "nodes": [
      {
        "id": "collect_info",
        "type": "conversation",
        "instruction": {
          "type": "prompt",
          "text": "Ask the customer for their name and contact information."
        }
      }
    ],
    "start_node_id": "collect_info",
    "begin_tag_display_position": {
      "x": 100,
      "y": 200
    },
    "notes": [
      {
        "id": "note_abc123",
        "content": "Remember to handle edge cases here.",
        "display_position": {
          "x": 300,
          "y": 150
        },
        "size": {
          "width": 200,
          "height": 100
        }
      }
    ]
  }
]

Changes

Changed in 14 of the 28 revisions of this API.38107123

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ to ^(latest|latest_published|(?!(?:latest|latest_published|v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/flex_mode to the response with the 200 status

      response-optional-property-added

    • response property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • response property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/agentic_transfer_config/transfer_agent/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version/oneOf[subschema #2]/ response's property pattern was changed from ^[a-z0-9_-]+$ to ^(latest|(?!(?:v\d+)$)[a-z][a-z0-9_-]{0,19})$ for the status 200

      response-property-pattern-changed

  • f1a0d7c1e36c218See the full diff
    • response property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • response property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/agent_version list-of-types was widened by adding types integer and string to media type application/json of response 200

      response-property-list-of-types-widened

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/kb_config to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[AgentOverrideConfig]/allow_dtmf_interruption to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/kb_config to the response with the 200 status

      response-optional-property-added

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

    • removed the gemini-2.5-flash enum value from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-removed

  • 1b4a9d84942a2141See the full diff
    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[subschema #2]/code response property's maxLength was increased from 5000 to 20000 for the response status 200

      response-property-max-length-increased

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/code response property's maxLength was increased from 5000 to 20000 for the response status 200

      response-property-max-length-increased

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.5 enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • endpoint deprecated

      endpoint-deprecated

  • 8ee53928bf312148See the full diff
    • added NodeInstruction SmsInstructionTemplate to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction response property oneOf list for the response status 200

      response-property-one-of-added

    • added SmsContentTemplate to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[SendSMSTool]/sms_content response property oneOf list for the response status 200

      response-property-one-of-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gemini-3.1-flash-lite enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[subschema #2]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CodeTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[CustomTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SubagentNode]/allOf[subschema #3]/tools/items/oneOf[MCPTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/tools/items/allOf[subschema #1]/oneOf[CustomTool]/enable_typing_sound to the response with the 200 status

      response-optional-property-added

    • removed NodeInstructionPrompt NodeInstructionStaticText from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[subschema #2]/instruction response property oneOf list for the response status 200

      response-property-one-of-removed

  • 56de19127afb125See the full diff
    • added SubagentNode to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tool_ids from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools from the response with the 200 status

      response-optional-property-removed

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/conditional_prompt to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/notes to the response with the 200 status

      response-optional-property-added

  • 3aa6f6e028ef262See the full diff
    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-mini enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CodeNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new gpt-5.4-nano enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[subschema #2]/keep_current_language to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[AgentSwapTool]/keep_current_language to the response with the 200 status

      response-optional-property-added

  • 424df3aa7900264327See the full diff
    • added CodeNode to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • added CodeTool to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/ response property oneOf list for the response status 200

      response-property-one-of-added

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the required property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/id from the response with the 200 status

      response-required-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #3 -> subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/display_position from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/global_node_setting from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/name from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice from the response with the 200 status

      response-optional-property-removed

    • removed the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/opt_out_initial_message from the response with the 200 status

      response-optional-property-removed

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/instruction to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[subschema #2]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/instruction to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[subschema #2]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/allOf[subschema #2]/finetune_transition_examples to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_description to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/execution_message_type to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[BridgeTransferTool]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_description to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/execution_message_type to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[CancelTransferTool]/speak_during_execution to the response with the 200 status

      response-optional-property-added

    • added NodeBaseCommon to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[AgentSwapNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BranchNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[BridgeTransferNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[CancelTransferNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[EndNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[SmsNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • added NodeBaseCommon subschema #2 to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[NodeBase]/ response property allOf list for the response status 200

      response-property-all-of-added

    • removed AgentOverrideConfig from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed AgentOverrideConfig from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[MCPNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

    • removed NodeBase from the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ComponentNode]/ response property allOf list for the response status 200

      response-property-all-of-removed

  • 8fbf8c54a142514See the full diff
    • added the new claude-4.6-sonnet enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[FunctionNode]/allOf[subschema #3]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[PressDigitNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the new claude-4.6-sonnet enum value to the items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/model_choice/oneOf[ModelChoiceCascading]/model response property for the response status 200

      response-property-enum-value-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[BooleanAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[EnumAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[NumberAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[ExtractDynamicVariableTool]/variables/items/oneOf[StringAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ConversationNode]/allOf[subschema #3]/tools/items/oneOf[TransferCallTool]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[BooleanAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[EnumAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[NumberAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[ExtractDynamicVariablesNode]/allOf[subschema #2]/variables/items/oneOf[StringAnalysisData]/required to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #1: Cold Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #2: Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added

    • added the optional property items/allOf[CreateConversationFlowComponentRequest]/allOf[ConversationFlowComponent]/nodes/items/oneOf[TransferCallNode]/allOf[subschema #2]/transfer_option/oneOf[subschema #3: Agentic Warm Transfer]/transfer_ring_duration_ms to the response with the 200 status

      response-optional-property-added