I have a JSON file in my ADLS container with the below data in JSON. I want to create a power app with power flows that can read this data and show it in a power app gallery. And my user can insert/update/delete data from the power app as per the requirement from the Power app. Please suggest a way to do so.
[
{
"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
}
]