
Announcements
Hi everyone,
I have created a flow named REST Consume Flow which is used to consume data using REST API and on testing the flow (manually) it was successful but when I tried connecting the same flow in one of my Sample app, I am unable to add the flow and it displays the following:
So I did search for the same on forum, I did found one: Reference in which the solution was to include the Power Apps V2 trigger instead of the default one but still the issue is still there.
Do let me know how can this be resolved.
Regards,
Sidhant.
Hi,
I am able to connect the Flow to my now for that I just specified the schema again (by passing an example and inferred it).
{
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"employee_name": {
"type": "string"
},
"employee_salary": {
"type": "string"
},
"employee_age": {
"type": "string"
}
},
"required": [
"id",
"employee_name",
"employee_salary",
"employee_age"
]
}
}Now I am trying to update the value using POST, for which I have created another flow:
And have added few text inputs control and the flow is getting triggered
But the value changes are not getting reflected: