Docs
  • Overview
    • 👋Welcome to Orimon AI
  • Product Guides
    • 🤖Create A Bot
      • đŸĨLeads Generation & Support Bot
      • đŸ’ŗE-Commerce Specialist Bot
    • đŸ“ĒFlag and Train
    • âš™ī¸Setting up Bot Appearance
      • 🎨Setting Theme Color
      • đŸ’ŦSetting Message Bubble
      • 🎓Setting Bot Header
      • đŸ—¯ī¸Setting Trigger Icon
      • 📩Setting Welcome Message
      • â—€ī¸Setting Fallback Message
      • đŸŗī¸Disable Branding
      • đŸ—’ī¸Setting Lead Form
      • âš ī¸Setting Up Conversation Triggers
      • ⚡Adding Quick Replies
      • 📎Custom Query Placeholder
    • ✨Setting Up Conversational Leads
    • 🙋Setting up Live Chat
      • âš™ī¸Configuring Live chat
      • đŸ—Ŗī¸Transferring To Live Agent
      • đŸ’ģLive Chat Agent Screen
      • đŸ›Ŗī¸Live Chat Process
      • 🕔Operational Hours
      • âšī¸Disable AI
      • 👉Join Active Chat Room
    • đŸ’ŊBot Model
    • đŸŒĄī¸Bot Temperature
    • 🛑Quota Limits
    • 🎭AI custom prompt
    • 🔑Bring your openAI key (BYOK)
    • Workflows
      • đŸ—’ī¸Text Node
      • 🔗Action Node
      • 🔀Condition Node
      • Dynamic Variables
  • Fundamentals
    • 🧑Inviting Members
    • âŦ‡ī¸Install the Dashboard App
    • đŸĻBilling and Subscription
      • 🔔How do I subscribe?
      • 🔋How to buy additional quota for my plan?
      • 📈How do I upgrade my plan?
      • ⛔How do I cancel my plan?
      • â™ģī¸How do I renew my plan?
  • Integrations
    • đŸĒWebhook
    • ⚡Zapier
    • đŸ›ŗī¸Pabbly
    • đŸĒ¸Hubspot
    • đŸ‘ĨSalesForce
    • 📗Google Sheets
  • Channels
    • đŸ—Ŗī¸Setting up Channels for Messages
    • 📩FaceBook Messenger
    • đŸŸĸWhatsApp
      • đŸ’ŗAdd Payment Method
    • đŸĒ›DIY Website Building Tools
    • đŸŸĻTelegram
    • 📰WordPress
    • 🌐Website Integration
    • ⚡Zapier
    • đŸ›ŗī¸Pabbly
    • đŸ‡Ģ🇴Slack
    • 🎮Discord
    • đŸ‡Ģ🇲MS Teams
  • Templates
    • 🤝Book a Meeting
  • White-Labelling
    • đŸŗī¸Getting Started
    • 🤖Chat-Bot White Labelling
    • 🔰Dashboard White Labelling
    • 📧Email White Labelling
  • developer API
    • 🔍Getting Started with APIs
    • âœ‰ī¸Message API
Powered by GitBook
On this page
  • 1. Creating a new node
  • 2. Configuring an action
  • 3. Linking to a new node
  • 4. Response Data sharing

Was this helpful?

  1. Product Guides
  2. Workflows

Action Node

This is a guide for creating and using an action node.

PreviousText NodeNextCondition Node

Last updated 3 days ago

Was this helpful?

1. Creating a new node

  • Click the Add new node button in the top-right corner to begin defining a new workflow element.

  • From the dropdown, select Action node.

  • A blank action node will appear at the start of the canvas, acting as a placeholder for your content.

  • Drag the node to any location on the canvas—its position will be saved automatically.

2. Configuring an action

  • Click Configure Action inside your Action Node to open the setup modal.

  • The modal is organized into three sections:

    • Basic Configuration: Enter an informative Action Name and a brief Description.

    • API Configuration:

      • URL: Enter the web address you want to call.

      • Method – Select the HTTP verb (GET, POST, etc.) from the dropdown.

      • Headers – Content-Type: application/json is always included and cannot be removed; add any custom headers you need.

      • Request Body – Use the JSON editor to build your payload. You can insert shared data from the previous node at any level of nesting (arrays, objects, or combinations thereof).

    • Testing your API: Fields for each piece of shared data will appear here. Provide sample values, then click Test API to validate your setup. After you run the test, the modal displays the response details so you can confirm success or troubleshoot errors. The Create Action button remains disabled until the test returns a successful 2xx status. If you encounter problems, please reach out to support@orimon.ai. Once your test passes, click Create Action to save your configuration and close the modal.

NOTE: You can update an action by clicking on Update Action button.

3. Linking to a new node

After your action is saved, two connectors appear on the right side of the node:

  1. Success connector : The top connector in green represents a successful API call. A tooltip is also available. Drag the success connector to the node you want to run when the API succeeds.

  2. Failure connector : The bottom connector in red represents a failed API call. A tooltip is also available. Drag the failure connector to the node you want to run when the API fails.

4. Response Data sharing

After a successful API call, the action node’s shared data is forwarded exclusively to the node connected by its success handle. When using the failure handle, no shared data is passed to the next node. Nodes further downstream that aren’t connected via that submit handle will not receive the data. To inspect the shared data, Click the eye icon on the connector edge to open the Shared Data panel and review the submitted JSON form payload.

NOTE: To access a action’s success output in the immediately connected node, wrap the field key in double curly braces. Eg: if your response data has title as a key, include {{response.title}} in the next node to inject that value.

🔗
Workflow canvas with an empty action node
Action Configuration drawer
Action Configuration drawer
Shared Data panel on an edge connected from action to any node