Script Step

Script step gives you the ability to run your own Node.Js code within the workflow. Following Node.js modules are loaded into script step by default. You can directly use these modules. Buffer crypto URLSearchParams http https url util If you need additional Node.js Module or NPM modules you can reach out to integrations@apifuse.io. We will… Continue reading Script Step

Published
Categorized as Steps

Delay Step

The Delay step provides you the ability to pause the workflow event for a certain time period. For example, you may want to check the order status after a few hours then send the order event to downstream applications. Configuring the delay step is very simple. You can attach the delay step anywhere in the… Continue reading Delay Step

Published
Categorized as Steps

Callable Workflow

Call another workflow Step (Callable Workflow) A callable workflow step will run another workflow. Callable workflows are like functional calls in programming languages. They offer an easy way to reuse workflow logic. Setting up a callable workflow To create a callable workflow you need to set up a trigger as a callable workflow as shown… Continue reading Callable Workflow

Published
Categorized as Steps

Repeat

Repeat When working with a list of items (e.g. a list of invoice line items), you may need to carry out a set of actions for every item within the list. The repeat step helps you do that. Actions indented within a repeat block will be carried out for all items in the list. The… Continue reading Repeat

Published
Categorized as Steps

If Else

IF Else Step An IF Else step is similar to an IF then step however, it gives you an additional option to execute a group of steps if a condition is not met (false). This enables you to execute either/or steps. When configuring an IF Then configuration, you just need to set up the condition… Continue reading If Else

Published
Categorized as Steps

If Then

IF Then Step This step enables you to execute actions if a specific condition is true or false. If Then configuration As you can see in the following screenshot, the action is executed only if a moosend subscriber type value is equal to 1. Similarly, you can add any number of actions to this branch… Continue reading If Then

Published
Categorized as Steps

Action

Steps: Workflow steps can be actions, or control flow statements that help you describe business logic. Action step Actions carry out an operation in your target application (usually a create, update, or search operation). Each action requires a set of input fields and depending on the operation it may return output data Example Action: Insert… Continue reading Action

Published
Categorized as Steps