Hello,
I've been integrating API calls within my app. How can I directly display the HTTP response into a PowerApps Text Box without using intermediary files like Excel?
Thanks!
If this is the response:
"body": {
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#sites/$entity",
"createdDateTime": "2020-04-09T18:43:38.65Z",
"description": "",
"id": "This is the response",
"lastModifiedDateTime": "2023-12-10T01:49:35Z",
}
To get the 'id', you would do it like this.
Set(Response, HttpCall...);
Set(r_id, Text(Response.id));
Hi,
Is that you're looking for? Call HTTP Request from a Canvas Power App using Flow and get back Response | Power Automate | D365 Demystified
I would add that for getting full response, use outputs('HTTP'). Where "HTTP" is the name of your action.
______________________________________________________________
If I have answered your question, please Accept the post as solution.
If you like my response, please Thumbs Up.