Replay webhook event deliveries
Replay webhook event deliveries
POST
https://<your_gateway_host>/api/webhook-deliveries
This endpoint allows you to resend webhook events as needed. Note that the deliveries will be replayed asynchronously.
Body Parameters
All fields are optional.
webhook_ids
UUID array
IDs of the webhook endpoints.
webhook_event_ids
UUID array
IDs of the webhook events to resend. If this value is passed, all other fields below are ignored.
event_types
string array
Event types.
response_statuses
string array
Response status types. Options are: "2xx", "3xx", "4xx", and "5xx".
date_duration
integer
Duration in seconds (before current time) of recent deliveries to resend.
date_from
ISO date string
Start date for event delivery date range. Ignored if date_duration is passed.
date_to
ISO date string
End date for event delivery date range. Ignored if date_duration is passed.
{
"webhook_event_ids": ["708c49d1-1dd5-76c5-c3cd-7e379caf15ad"],
"webhook_ids": ["729309f3-2555-46b8-a2d7-ddb03e3edeaa"],
}
Last updated