I'm trying to pass an extra query parameter to Azure logic app so that I can process below data in the Logic App workflow
For Example https://logicURL?SelectedData="%7BsiteURL%3AXYZ.sharepoint.com%2Fsites%2FXYZDev%7D" (encoded string)
In HTTP action I am trying to handle above passed data with below JSON schema
{
"kind": "Http",
"inputs": {
"schema": {
"properties": {
"selectedData": {
"type": "string"
}
},
"type": "object"
}
} }
I am not getting selectedData value. I need to use decodecomponentURI and then use the JSON value.
Find the error here