Reputation: 11
I have JSON data in azure blob storage container. I want to get the data and create a table in power apps dataverse and store the data in that table. I am using Azure Data Factory for this. How can I do this? For eg: this is the json data
{
"name": "Apple",
"type": "Fruit",
"weight": "100"
}
OUTPUT
Name Type Weight
Apple Fruit 100
Upvotes: 0
Views: 1433
Reputation: 547
Upvotes: 0
Reputation: 3230
Input file in blob storage.
Create table in power apps.
Create Pipeline in ADF with Copy activity.
Add JSON file as Source and Power App as Sink.
Create Linked service as shown below
Provide necessary details.
Import Schema in Mapping tab. And Map both Schema as shown in below screenshot.
Finally run Pipeline.
Upvotes: 1