Can someone help me with getting Excel table headers into array variable ? I have "Parse JSON" function and my output looks like this:
{
"statusCode": 200,
"headers": {
"Cache-Control": "no-store, no-cache",
"Pragma": "no-cache",
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains",
"x-ms-request-id": "",
"OData-Version": "4.0",
"X-Content-Type-Options": "nosniff",
"X-Frame-Options": "DENY",
"Timing-Allow-Origin": "*",
"x-ms-apihub-cached-response": "false",
"x-ms-apihub-obo": "false",
"Date": "Thu, 05 Oct 2023 11:43:53 GMT",
"Content-Type": "application/json; odata.metadata=minimal; odata.streaming=true",
"Expires": "-1"
},
"body": {
"@odata.context": "",
"value": [
{
"@odata.etag": "",
"ItemInternalId": "",
"FirstName": "Aleksa",
"LastName": "Pokrajac",
"FavoriteClub": "CHE",
"Age": "25"
},
{
"@odata.etag": "",
"ItemInternalId": "",
"FirstName": "Milos",
"LastName": "Stevanovic",
"FavoriteClub": "CITY",
"Age": "24"
},
{
"@odata.etag": "",
"ItemInternalId": "",
"FirstName": "Milan",
"LastName": "Mrksic",
"FavoriteClub": "MUFC",
"Age": "23"
},
{
"@odata.etag": "",
"ItemInternalId": "",
"FirstName": "Aleksandar",
"LastName": "Simic",
"FavoriteClub": "ARS",
"Age": "30"
}
]
}
}
I need my variable to look like this "("FirstName", "LastName", "FavoriteClub", "Age"). Don't hate on club choices, that is a test file. 😁