I have a JSON file with the below Student's details in an ADLS container. I want to create an app that can perform below activities:
1- Read the records and show them in a gallery or form.
2- Insert new records into the file.
3- Update an existing record from the app.
4- Delete an existing record from the app.
Please let me know how can I connect my power app(with Power Automate) with files in the ADLS container and achieve the above functionality.
Sample JSON File:
[
{
"Id": 1,
"Name": "Mac",
"Email": "mac@amail.com",
"Phone No": 356734567
},
{
"Id": 2,
"Name": "George",
"Email": "g@amail.com",
"Phone No": 345677643
},
{
"Id": 3,
"Name": "Haris",
"Email": "h@amail.com",
"Phone No": 456876678
},
{
"Id": 4,
"Name": "Ford",
"Email": "f@amail.com",
"Phone No": 363679887
},
{
"Id": 5,
"Name": "Ben",
"Email": "b@amail.com",
"Phone No": 678546789
}
]