Hi @v-qiaqi-msft ,
Thank you for your response. Currently, as I develop the app, I create a collection on App OnStart using ClearCollect() as such:
ClearCollect(aWSPricesData,
{
id: "245f8c1a-joel-490d-bbc5-1932437c571c1",
offerCode: "AMAZONROUTE53REGIONALFRANCE",
version: "20210422213356",
publicationDate: "2021-04-22T21:33:56.000Z",
productSku: "A2FBGTVWPQDONKEY",
productFamily: "DNS Query",
productAttributes: "null",
terms: "null",
offerAttributes: "null"
},
{
id: "201f8c1a-four-490d-bbc5-1932437c571c2",
offerCode: "AMAZONROUTE53REGIONALGERMANY",
version: "20210422213356",
publicationDate: "2021-04-22T21:33:56.000Z",
productSku: "A2FBGTVWPPIZZA",
productFamily: "DNS Query",
productAttributes: "null",
terms: "null",
offerAttributes: "null"
}
);
The end goal is to have this data come from a custom connector making a call to our API endpoint. If I understand what you're saying, I can't display any data from a Collection in my PowerApp into a form? When we eventually connect to our API, how should I go about saving that data so that it can then be displayed in a display/edit form? Thank you.