Skip to content

Updating visuals

If you see any images containing outdated UI, please bear with us.

We are updating all content as quickly as possible to mirror our new UI.

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

SettingWhat it does
TypeThe type of result you want to return (Object, String, Number, Boolean, or Array).
ResultThe value to return. You can bind this from earlier actions.

Example: return a summary object

  1. Run your logic (for example fetch records, calculate totals, or call another API).
  2. Add Workflow result.
  3. Set:
    • Type: Object
    • Result: { "total": total, "items": items }

CONTINUE LEARNING

Learn how to return data from an API Endpoint.

Send response →