The question concerns Azure Logic Apps and how to parse JSON data in a workflow in order to store it to the sql database.
I have a problems to select content from JSON array that I'm receiving from HTTP request. Body is not empty because it's visible in previous step output. I would like to insert content to SQL database. The question is that how can I choose a specific content from parse_JSON Body? What should I type in expression field?
{
"key":"value",
"key1": {
"key1.1":"value",
"key1.2":"value"
},
"key2":"value"
},
{
"key":"value",
"key1":"value",
"key2":"value"
}




