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 | User Popuo | The target popup. |
| Parameters | { "title": "Confirm", "userId": CurrentUser.id } | Values to pass for the parameters the popup expects. |
| Wait for close | true | If true, the workflow pauses until the popup is closed. |
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.

