How to Pass Parameters from Canvas Apps to Power Automate Flows?
Table of Contents
Question
You have a Power Automate cloud flow named FlowtriggeredbyaPowerapp.
You need to trigger the flow from a canvas app button by passing two parameters from two text boxes:
- Textbox1: EmailAddress.Text
- Textbox2: Response.Text
Which function expression should you use?
Select only one answer.
A. FlowtriggeredbyaPowerapp.Run ( EmailAddress.Text, Response.Text );
B. FlowtriggeredbyaPowerapp.Run ( EmailAddress.Text; Response.Text; );
C. FlowtriggeredbyaPowerapp.Start ( {EmailAddress.Text, Response.Text} );
D. FlowtriggeredbyaPowerapp.Start ( [EmailAddress.Text, Response.Text] );
Answer
A. FlowtriggeredbyaPowerapp.Run ( EmailAddress.Text, Response.Text );
Explanation
This item tests whether the candidate knows the correct syntax for invoking a Power Automate cloud flow from a Power Apps app.
Run () function is used to call a cloud flow instance from canvas app and the values that need to be sent from the canvas app to the cloud flow should be passed as arguments in the run method. The arguments should be separated by a comma. Start function cannot be used to trigger the flow from a canvas app and pass arguments. OnStart event property in the canvas app is used for the initialization of global variables, the prefetching of data into collections, and to determine which screen should be shown first.
Microsoft Power Platform Developer PL-400 certification exam practice question and answer (Q&A) dump with detail explanation and reference available free, helpful to pass the Microsoft Power Platform Developer PL-400 exam and earn Microsoft Power Platform Developer PL-400 certification.