Send (replay) an event to the endpoint
Manually (re)send an existing event to this webhook endpoint. Identify the event by its
event_idempotency_key (the id of an event already known to the system). The request is
accepted for asynchronous delivery and the response echoes the queued event’s topic and
status.
Use this to replay an event the endpoint missed — for example after fixing an outage on your receiver, or after activating an endpoint that should have received an earlier event.
Events are only delivered to active endpoints. Sending to an inactive endpoint returns
409 invalid_status ("… is inactive; reactivate it before sending.") — activate it with
PATCH … { "active": true } first, then retry.
Body
event_idempotency_key— required. The idempotency key of the existing event to (re)deliver.
Example
POST /v1/notifications/webhooks/whr_01HXYZABC1234567890ABCDEFG/send
{
"event_idempotency_key": "evt-1"
}
Authorizations
API key issued during merchant onboarding.
Path Parameters
[^\/#\?]+?Body
SendWebhookEventDto
1 - 255