question about microflow button with confirmation message

1
Hi,  I have a question. When calling a microflow with a button, you can do edit confirmation and add your own custom message in it. However, it will not allow you to add a parameter with it.  For example, if I want to pop up a message:    “Are you sure you want to deactivate account 2345? “ There is no place for me to pass in a parameter. Is there a widget that can allow me to do that? Thanks in advance.
asked
2 answers
1

Try the Confirm button!

answered
1

The easiest way to do this is to build your own confirmation pop-up. Create a custom page with the pop-up layout, that contains exactly the message you want. Then either show this page through a show page button, or a new microflow. Then link the Proceed button on your custom page to your original deletion microflow. 

 

You can also use this to further prevent admins from accidentally deleting very sensitive data by making them type in a certain text on your confirmation pop-up page (like “delete” or make them copy a randomly generated string). I use it in the follow way: 

answered