web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Display JSON data in P...
Power Apps
Answered

Display JSON data in Power Apps

(1) ShareShare
ReportReport
Posted on by 35
Hi,
 
I get Power Automate response in below JSON format:
 
{
    "body": [
        {
            "state""Andhra Pradesh",
            "capital""Amaravati",
            "population"49577103,
            "area"162975,
            "districts"26
        },
        {
            "state""Arunachal Pradesh",
            "capital""Itanagar",
            "population"1383727,
            "area"83743,
            "districts"27
        },
        {
            "state""Assam",
            "capital""Dispur",
            "population"31205576,
            "area"78438,
            "districts"35
        }
 
]
}
 
I want to display the same JSON in a Power Apps screen. My question is which is the control to be used to display this.
Thanks, I appreciate any help.
Categories:
I have the same question (0)
  • Verified answer
    Kalathiya Profile Picture
    1,690 Super User 2026 Season 1 on at
    Hello @gavasthi1
     
    As I understand, you want to display an array response from Power Automate to Power Apps. You need to use ParseJSON() with ForAll() to convert the response into a collection, then use that collection in a Gallery.

    For your sample JSON (states data), you can do something like this:

    For example - this code you need to put in powerapps: 
    ClearCollect(
        colStates,
        ForAll(
            Table(ParseJSON(YourFlowName.Run().result).body),
            {
                State: Text(Value.state),
                Capital: Text(Value.capital),
                Population: Value(Value.population),
                Area: Value(Value.area),
                Districts: Value(Value.districts)
            }
        )
    )
    
    //result - your response key nae from power automate

    Please follow the below blog for more detailed step-by-step guidance.

     
    If this response resolves your issue, please mark it as the Verified Answer so it can help other community members as well.
    ---------------------------------------------------------------------------------
     
    📩 Need more help? Mention @Kalathiya anytime!
    ✔️ Don’t forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 536

#2
WarrenBelz Profile Picture

WarrenBelz 426 Most Valuable Professional

#3
Haque Profile Picture

Haque 305

Last 30 days Overall leaderboard