Get real-time notifications about events in your Drivly account.
/webhooks
endpoint.
service.*
,
will match all events related to the service
resource and forward them to your server!Prepare the signature
X-Drivly-Signature
header of the request.Calculate the hash
1714749612
and the body is {"event": "invoice.created"}
, the mixin string will
be 1714749612.{"event": "invoice.created"}
.Verify the signature
X-Drivly-Signature
header, the request is valid.200 OK
response from your server, we will retry sending the webhook up to 5 times.
The first retry will be sent after 1 minute, and each subsequent retry will be sent after 2, 4, 8, and 16 minutes. If we still
don’t receive a 200 OK
response after 5 retries, we will stop sending the webhook. You can always resend the event manually
from the dashboard or the API.