- Documentation
- Activities
- User Interaction
- Request Approval
Ask the user to approve or reject. Stores a true/false you can branch on with an If.
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
Title title | string | Optional | Approval Required | — |
Message message | text | Required | Do you approve this action? | — |
Approve Button approveButtonText | string | Optional | Approve | — |
Reject Button rejectButtonText | string | Optional | Reject | — |
Timeout (seconds, 0 = wait forever) timeoutSeconds | number | Optional | 0 | — |
On Timeout onTimeout | enum | Optional | reject | —rejectapprove |
Reminder Interval (seconds, 0 = none) reminderSeconds | number | Optional | 0 | — |
Output Variable outputVariable | variable | Optional | Approved | — |
Output
$outputVariableBooleanTrue when approved, false when rejected
Compatibility
WindowsDesktopAttended
Related activities
Ask Question
Ask the user a question and get their answer
Manual Action
Pause for the user to do something by hand, then pick one of your custom buttons. Branch on the choice with a Switch.
Select File
Show a file picker dialog for the user to select a file
Select Folder
Show a folder picker dialog for the user to select a folder
Show Message
Display a pop-up message to the user
Wait For User
Pause an attended workflow until the user chooses to continue or cancel, or a timeout auto-resumes it. Branch on the chosen button with an If.