Nected Docs
Try Nected For Free
  • 5 min QuickStart Guide
  • Getting Started
    • Introduction
    • Core Concepts
    • Use Cases
    • Tech Architecture
    • FAQs
  • INTEGRATIONS
    • Overview
    • Integrations Libraries
      • PostGres
      • MySQL
      • Oracle
      • MS SQL Server
      • Snowflake
      • MongoDB
      • RedShift
      • REST API
      • Google Sheets
      • Slack
    • Managing Integrations
  • DATASETS
    • Overview
    • Managing Dataset
  • Rules
    • Overview
    • Rule Types
      • SimpleRule
      • DecisionTable
      • Ruleset
      • Rule Chain
      • Decision Tree
    • Rule Conditions
    • Rule Actions
    • Concepts
      • Rule Result
      • Test & Publish Rules
    • Add Input Attributes
      • JSON Input Attributes
      • List Input Attributes
  • Triggers
    • Trigger Rule via API
    • Trigger Rule via WebHook
    • Trigger Workflow via API
    • Trigger Workflow via WebHook
    • Scheduler
    • Response Format
  • Workflow
    • Overview
    • Managing Workflow
    • Add Node
      • Trigger Node
      • Action Nodes
        • Rule Node
        • Workflow Node
        • Custom Code Node
        • Database Node
        • REST API Node
      • Control Nodes
        • Loop Node
        • Delay Node
        • Response Node
        • Set Variables Node
        • Switch Block
        • Parallel API
    • Test & Publish Workflows
  • CODE AND DATABASE QUERIES
    • JavaScript Editor
    • Formula Editor
    • JSON Editor
    • List Editor
    • Excel-like Function
  • Embedded System
    • White-Labelling
    • Embeddable View
  • Self Hosting
    • Overview
    • Infrastructure Sizing
    • New Installation
      • Docker
      • Kubernetes
        • Set Up Kubernetes Cluster on AWS EKS
    • Additional Configuration
      • High Availability
      • Email Setup Guide
    • Upgrade Nected Version
  • Security
    • API Authentication
      • OAuth as part of Authentication under REST API
    • Role Based Access Control (RBAC)
    • SOC 2 Type 2, GDPR, ISO Compliance
  • Audit
    • Audit Trail
    • Approval Flow
    • Version Control & Rollback
    • Import/Export
  • Management API
    • Audit Log API
    • Global Variable API
  • References
    • Attribute Library
    • Global Variables
    • Limits
    • Pre-Configured Tokens
    • Pre-Configured Operators
    • NULL Value Handling/Behavior
    • Troubleshooting Errors
      • Multiple Tabs/Users Edits
      • Limits in Nected
    • Allowed Status Combinations
    • Environments
    • Usage Widget
    • Gen AI
  • ACCOUNT SETTINGS
    • Workspace Setting
      • Date Format and Timezone Settings
Powered by GitBook
On this page
  • Purpose of the Trigger Node
  • Steps to Configure the Trigger Node
  • Add Input Attribute
  • Configure the Settings for the Trigger Node
  • Test the Input Attribute
  • Trigger the Workflow via API/WebHook
  • Conclusion
  1. Workflow
  2. Add Node

Trigger Node

The Trigger Node is the foundational node in any workflow. It serves as the entry point for the workflow and is required to configure inputs before proceeding with other workflow nodes. This documentation outlines how to configure and use the Trigger Node effectively.

Purpose of the Trigger Node

The Trigger Node allows you to define the initial input attributes required for the workflow. These attributes can come from either:

  • Custom Attributes: Manually created attributes.

  • Attribute Library: Predefined attributes available in your environment.

Key Features:

  1. Input Attribute Definition:

    • Add input attributes to the workflow from both custom attributes and the attribute library.

    • These attributes act as variables or parameters that are passed into the workflow for further processing.

  2. Testing Configuration:

    • Test the configured attributes directly within the Trigger Node to ensure they function correctly.

  3. Workflow Triggering:

    • The Trigger Node enables workflows to be executed via external triggers such as APIs or webhooks.

    • Each workflow’s triggering mechanism is unique to its configured Trigger Node.

Steps to Configure the Trigger Node

1

Add Input Attribute

  • Create or select the workflow where you want to add a Trigger Node.

  • Open the Trigger Node configuration panel.

  • Define the input attributes:

    • From Custom Attributes:

      • Click on the Custom Attribute tab.

      • Add a new custom attribute by specifying its name, type, and default value (if required).

    • From Attribute Library:

      • Click on the Attribute Library tab.

      • Search for existing attributes and select the ones you want to add.

  • Save the configuration.

2

Configure the Settings for the Trigger Node

Go to the Settings tab to configure authentication, trigger method, and testing parameters.

Here you'll be able to see options like these:

1. Authentication:

From this section you can set the authentication for the API of the workflow. To enable it follow these steps:

  1. Select Authentication Type:

    • Private: Requires API key authentication (recommended for production)

    • Public: No authentication required

  2. Configure API Key (if Private selected):

    • Enter your nected-api-key value (format: XXXX-XXXX-XXX)

Trigger Configuration:

Here you can configure the trigger nodes

  1. Set Status: Toggle to enable/disable the workflow trigger

  2. Choose Trigger Method:

    • API: REST API endpoint triggering

    • Webhook: Webhook-based triggering

  3. Response Caching: Enable to cache responses for better performance.

Base URL and Testing

  1. Copy Base URL: Use the auto-generated endpoint URL for integration. The

    format is: https://nected-XX.nected.io/nected/workflow/{workflow-id}

  2. Configure Body Parameters:

    • Set testing environment (default: "staging")

    • Define sample request parameters matching your input attributes:

    {
      "environment": "staging",
      "params": {
        "Approved": false,
        "Date_of_Purchase": "2025-06-12",
        "cusId": "",
        "name": "",
        "number": 9871525667
      }
    }
3

Test the Input Attribute

Simply click on the Test button to verify that the input attributes are functioning correctly. I will then take you to the Test Result section within the Trigger Node. with the output, like this:

4

Trigger the Workflow via API/WebHook

To trigger the workflow programmatically, the Trigger Node supports the following methods:

You can trigger the workflow by sending API requests. For detailed instructions and examples, visit the documentation page: Trigger Workflow via API

Workflows can also be triggered using webhooks. For complete steps on configuring and using webhooks, visit: Trigger Workflow via Webhook.

Conclusion

The Trigger Node serves as the essential foundation for every workflow in Nected. By properly configuring input attributes, authentication settings, and testing parameters, you establish a reliable entry point that enables seamless workflow execution through APIs or webhooks. Once configured, your workflow becomes accessible for integration with external systems and applications, providing the flexibility to process dynamic inputs while maintaining security and performance standards.

PreviousAdd NodeNextAction Nodes

Last updated 14 hours ago