Originally posted in the Webflow Forum - https://discourse.webflow.com/t/support-for-webhook-events-based-on-certain-item-fields-updating/220224
The goal of this functionality would help with unnecessary requests to the webhooks created for a site.
A suggestion could be to support a new field called filterFields
This would be passed as the request body as so:
body: {
"filterFields" ["name", "slug"]
}
When a field is changed that matches filterFields
only then fire a webhook event. The logic already exists for form_submissions, so I would think this would be possible for this use case.