Appearance
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.
Configuration
| Display Key | Example Input | Description |
|---|---|---|
Popup model | User Popup | The popup to open. |
Properties | { "title": "Confirm", "userId": auth.user.id } | Values to pass into the popup's properties. |
Wait close event | true | If true, the workflow pauses until the popup closes. |
Example flow
- Run
Open popupand pass the content parameters your popup expects (e.g., title, message, ids). - If “Wait for close” is enabled, handle the result after the popup closes (e.g., confirm/delete).
- Continue the workflow based on the user’s action.

