I am having trouble getting a test run from my Flow. When I test, nothing happens! I have an ArcGIS Rest Service with a web hook enabled for any changes (New, Updated, Deleted, etc.). I have my Request Body JSON Schema:
{
"type": "object",
"properties": {
"$content-type": {
"type": "string"
},
"$content": {
"type": "string"
},
"$formdata": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
]
}
}
}
}
And in the next step I am trying to Parse the JSON:
With this schema:
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"layerId": {
"type": "integer"
},
"orgId": {
"type": "string"
},
"serviceName": {
"type": "string"
},
"lastUpdatedTime": {
"type": "integer"
},
"changesUrl": {
"type": "string"
},
"events": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
When I test manually in Power Automate and make changes to the feature service in a new window... nothing happens in Power Automate. The ultimate goal is have an email notification sent when a change is made. But I cannot even get PA to pick up a response to the JSON payload. Any ideas of what I am doing wrong here? Thank you!