From the HTTP im getting below json:
{
"dataList": [
{
"stateCd": "FL",
"cntryCd": "US",
"statusCd": "A",
"timeZone": "ET"
}
]
}
I just want to get the value of cntryCd. I tried with parse json and Apply to each but it is not giving me exact parameter.
Solved! Go to Solution.
Hi @Venkateswaran ,
You can use an expression to directly reference the cntryCd property. For example:
We can use the following expression:
variables('varData')?['dataList']?[0]?['cntryCd']
Here is the sample runtime output:
Hope this helps.
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
Hi @Venkateswaran ,
You can use an expression to directly reference the cntryCd property. For example:
We can use the following expression:
variables('varData')?['dataList']?[0]?['cntryCd']
Here is the sample runtime output:
Hope this helps.
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
User | Count |
---|---|
23 | |
15 | |
14 | |
10 | |
9 |
User | Count |
---|---|
48 | |
29 | |
28 | |
25 | |
23 |