I'm building a Custom Connector to a web API. There is a POST call that has a nested array in the Body that the Custom Connector builder is not recognizing.
Method: POST
Body:
[
{
"Label": "ABCDEF012345670000000001",
"ResultDate": "2015-12-15T00:00:00Z",
"FileName": "test.pdf",
"DocumentFileBase64": "File encoded in Base64==",
"Results": [
{
"TestName": "ABC",
"Quantity": 100.00,
"Passed": true,
"Notes": ""
}
]
}
]
When I paste this into the Custom Connector builder, there is no "Results" option.
How do I get the "Results" nested array to show up in the Custom Connector?
Thank you
Anyone?
I'm stuck with this same problem.
Bump
Create a collection of objects and pass the collection into the body property.
ClearCollect(vmsCollection,
{resourceid: "12345",recurrence: "daily"},
{resourceid: "987456",recurrence: "daily"}
);
CustomConnector.PostMethod({body:vmsCollection});
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
196 | |
52 | |
41 | |
39 | |
35 |
User | Count |
---|---|
261 | |
85 | |
71 | |
69 | |
66 |