Skip to main content
Version: console

User Defined Automation (Beta)

Interactor®’s user-defined automation enables users to create custom workflow using triggers and actions.

Workflow consists of below.

Trigger

A trigger is an event that starts a workflow or integration. It monitors for specific conditions or occurrences in one system, and when those conditions are met, it initiates the integration process.

Action

An action is the task or operation performed in response to the trigger. Actions can be chained to execute multiple actions in sequence.

Code

Currently supports Javascript, script allows the developers to use the language of their choice in the workflow.

HTTP

HTTP action is used to make HTTP(S) call to an API. HTTP action can be configured in a similar way you would with API testing tool like Postman.

Repeat (Loop)

To execute the same action or set of actions multiple times, often for a fixed number of iterations or based on specific criteria (value).

Example in iPaaS:

Use Case: Send reminders to customers.

• Repeat action 3 times for each customer who has an overdue invoice.

Workflow:

• Fetch customers with overdue invoices.

• Repeat: Send reminder email 3 times with a delay between each email.

Conditionals (alpha)

Conditional logic is currently available in Interactor as an alpha feature.

FeatureIf ConditionIf ValueCase ConditionCase Value
EvaluationLogical expressionSpecific valueMultiple logical checksMultiple value checks
ComplexitySimple logicSimple value matchingComplex logic branchingValue-based branching
Use CaseSingle decision pathSingle value checkMulti-path branchingMulti-path branching