Validate Feed Webhook Destination
Webhooks
Validate Destination
Validate and test the functionality of your receiving endpoing by calling this endoint. Upon receiving this POST, we will make two requests to the destination URL:
- one without a signature
- one with a valid “Daylight-Signature” header.
Each request will contain an example feed item, allowing you to test parsing and validation. To receive a successful response from this request, your receiving endpoint must return a non-2xx response to the invalid request and a 2xx response to the valid one.
POST
Validate Feed Webhook Destination
When a webhook alert pings your server, we provide a signature to verify that the alert is coming from us. This signature should match a hash of the incoming request’s body.
To perform this verification, you need:
- The secret generated when first creating the webhook
- The signature in the header daylight-signature
- The string of the body included in the request