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.

Open popup

Use this action to open a Popup in your project. You can pass values to its properties and optionally wait for it to close before continuing the workflow.

USING POPUPS

If you are yet to learn about popups, it is recommended to first read their dedicated documentation.

Go to popups documentation ->

Configuration

Display KeyExample InputDescription
PopupUser PopuoThe target popup.
Parameters{ "title": "Confirm", "userId": CurrentUser.id }Values to pass for the parameters the popup expects.
Wait for closetrueIf true, the workflow pauses until the popup is closed.

Example flow

  1. Run Open popup and pass the content parameters your popup expects (e.g., title, message, ids).
  2. If “Wait for close” is enabled, handle the result after the popup closes (e.g., confirm/delete).
  3. Continue the workflow based on the user’s action.