Flows. Just flows

Create flows, drag and drop nodes and test.
Try for yourself Try for yourself
Core logic nodes
Variables & Data
Assign
Assign
A container that is used to pass values to variables.
In
In
Starting point of the flow. Only one is allowed.
Out
Out
The ending point of the flow. There can be one or more OUTs.
Logic
Iterator
Iterator
Loop block. Iterates over the entire array.
Switch
Switch
Branch block. Accepts a condition and returns a boolean value. Unlimited number of ways. Execute the first “true”.
If
If
Logic branching block. Accepts a condition and returns a boolean value.
Transform
Function Call
Function Call
A call block for a built-in or user-created function.
External Data
REST Connector
REST Connector
Get data from any external systems and services using REST connectors. Possible to add cookies and headers if required.
SOAP Connector
SOAP Connector
Get data from any external systems and services using SOAP connectors. Possible to add cookies and headers if required.
DB Connector
DB Connector
Get data from external databases. Support PostgreSQL or MS SQL databases. Each node executes a selected query.
Transaction Begin
Transaction Begin
Combine operations into an atomic package by initiating a DB transaction within your flow, specifically targeting a particular database.
Commit
Commit
Verify and commit all modifications made in the transaction within the Flow, following the “Transaction Begin” node.
Rollback
Rollback
Roll back each operation included in the transaction within the database to which the transaction was opened.
Blockchain Contract
Blockchain Contract
Engage in various operations with smart contracts, including invoking their functions, validating their accuracy.
Blockchain Service
Blockchain Service
Retrieve information based on the selected function of the EVM Blockchain connector.
Exceptions
Exception Handler
Exception Handler
Process an alternative flow to handle exceptional situations. Added along with the OUT node where the result is passed.
Raise Exception
Raise Exception
Raises the specific exception. Flow can contain more than one Raise Exception node.
Business rules nodes
Assets
Dictionary
Dictionary
Structured ordered data storage. It is used both in scorecards and independently in flows.
Decision table
Decision table
Model views with complex logic. Establishes a relationship between conditions and actions.
Scorecard
Scorecard
A graphical representation of a mathematical formula that is used to predict the future behavior of a customer or prospect based on what is known about them.
PMML
PMML
A way to describe predictive models generated by data mining and machine learning algorithms.
Flow
Sub Flow
Sub Flow
An entry point to an additional flow. Returns the result of an additional flow.
Use expressions.
No scripting.
Designed for complex calculations and decisions.
Try for yourself Try for yourself
Global Variables
Define project-wide constants that are universally accessible across all flows, with the flexibility to override them when generating the API.
Try for yourself Try for yourself