Hi all
Trawling through countless posts regarding the subject, I am yet to find a solution for my task, hoping someone here can assist.
I simply want to create a new SharePoint list item based on the values of two TextInputs in a canvas app.
I attempt to pass the values to Power Automate with the following code...
ClearCollect(colNewRequest,
{Name: TextInput1.Text,
Code: TextInput2.Text});
Set(varFlowData, JSON(colNewRequest));
'PowerAppName'.Run(varFlowData);
In Power Automate, I have a Parse JSON step as well as an email step for testing.
The resulting email looks like this....
{"Sendanemailnotification(V3)_Body":"[{\"Code\":\"VALUE_1\",\"Name\":\"VALUE_2\"}]"}
I want to create a new SharePoint List item using the two values "VALUE_1" and "VALUE_2".
How can I extract "VALUE_1" and "VALUE_2" from the "Parse JSON" step, so that I can use these values to create the SharePoint List item?
Thanks for any help!