Appearance
Workflow result
Use Workflow result when you want a reusable backend workflow to return one final value.
This is useful when you build a workflow that’s called by other workflows and you want to pass back a single result (like { "success": true }, a number, or a list).
Where you can use this action
The Workflow result action is only available in Functions.
What it does
When Workflow result runs:
- It sets the workflow’s final output.
- It stops the workflow, so no actions run after it.
Configuration
| Setting | What it does |
|---|---|
Type | The type of result you want to return (Object, String, Number, Boolean, or Array). |
Result | The value to return. You can bind this from earlier actions. |
Example: return a summary object
- Run your logic (for example fetch records, calculate totals, or call another API).
- Add
Workflow result. - Set:
Type:ObjectResult:{ "total": total, "items": items }

