I am new to the power platform however I have managed to perform an get API call via Automates "HTTP" step.
I have a Http response from this as follows:
[
{
"id": 793272,
"summary": "Create Network map",
"recordType": "ServiceTicket",
"board": {
"id": 1,
"name": "Service Desk"
},
"status": {
"id": 591,
"name": "Assigned Unscheduled"
}
},
{
"id": 793273,
"summary": "Create Network map2",
"recordType": "ServiceTicket",
"board": {
"id": 1,
"name": "Service Desk"
},
"status": {
"id": 591,
"name": "Assigned Unscheduled"
}
}
]
So far so good. If I wanted to return this data (or at the very least id, summary and recordtype) to a canvas app and use it to populate a collection with columns. How do I do this?
Currently I have a "Respond to Powerapp or flow" step that returns and escaped Json string ie:
"output": "[{\"id\":793272,\"summary\":\"Create Network map\"...
The call to automate in Powerapps is constructed as follows:
Set(id,"20960");
Collect(Collection1, GetCWTickets.Run(id))
The collection is returned as a single value and single row. How do I change this to display the id,summary and recordtype as columns?
Collection Contents