I have a question regarding hooks for a data source. I attempted to add a hook so that whenever a record is inserted, updated, or deleted in the data source, a webhook is triggered. I appended the following hook configuration to the data source hooks, but it does not seem to be working:
json
{
“url”: “https://prod-49.westus.logic.azure.com:443/workflows/xxxx/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=qdBoD-L-XXmoRXNBSYQkMCZ_0FE27nn7HV-AXyjGqcA”,
“type”: “web”,
“runOn”: [
“insert”,
“update”,
“delete”
],
“payload”: {
“Email”: “{{Email}}”,
“Action”: “{{_meta.runOn}}”,
“EventId”: “{{EventID}}”,
“LastName”: “{{Last Name}}”,
“FirstName”: “{{First Name}}”,
“DeletedTime”: “{{_deletedAt}}”,
“UpdatedTime”: “{{_updatedAt}}”,
“RegistrationTime”: “{{_createdAt}}”
}
}
Could you please review this configuration and let me know if there is anything incorrect or missing that might be causing the webhook not to trigger? Any guidance on how to properly set this up would be appreciated.