Hi there
I have a flow that creates an image in a sharepoint list then sends me the Binary and hyperlink back to my app as a variable. I would like to get the Item ID also sent back as a variable but not sure how to do it.
The Parse JSON Schema is below
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Pic": {
"type": "string"
}
},
"required": [
"Name",
"Pic"
]
}
}
Flow pic is here
Do I need to send the Itemid back to powerapps by adding an output?
Look forward to some help.
Solved! Go to Solution.
Hello StuCundy,
you are correct, any information that you wish to return into the PowerApp will require it added as an output of the response.
For instance, as a simple test I created a test flow that just returns a single text value.
Then inside the app, I have it take that value and add it into a variable
Since the information is returned as a record in the variable which I can then grab the value from
have a good day,
Hello StuCundy,
you are correct, any information that you wish to return into the PowerApp will require it added as an output of the response.
For instance, as a simple test I created a test flow that just returns a single text value.
Then inside the app, I have it take that value and add it into a variable
Since the information is returned as a record in the variable which I can then grab the value from
have a good day,
User | Count |
---|---|
95 | |
39 | |
25 | |
22 | |
16 |
User | Count |
---|---|
129 | |
51 | |
48 | |
35 | |
24 |