Web hook not triggering on insert/update/delete events in Fliplet data source

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.

Hi,

How are you testing i.e. triggering the web hooks? e.g. saving data via the data source manager etc

Thanks,

Deb

Hi Deb- I tried directly adding the data in data source as well as adding or updating the data via fliplet web app. In both scenarios it did not work.

I was using the incorrect syntax.. Working fine now. Instead of URL was using endpoint.

1 Like