This feature only applies to Embedded iPaaS
The If-Else connector lets you introduce conditional branching within a workflow. It evaluates a single condition and executes one of two possible paths: True or False. This is useful when a workflow’s next step depends on specific data values or evaluation results.
Example: Accounting Workflow
Imagine a workflow that processes vendor invoices. You can use If-Else to check whether an invoice amount exceeds a defined threshold:
- If (amount > 10,000): Route the invoice to an approval workflow or trigger a Slack notification for the finance team.
- Else: Post the invoice automatically to your accounting system through an API call.
This logic ensures that high-value transactions go through extra review, while routine items are handled automatically.
If-Else is ideal for workflows that need simple decision logic—such as verifying input data, checking user permissions, or routing records based on status. For more complex conditions with multiple outcomes, use the Branch connector.