post
https://api.lirium-sandbox.com/v1/webhooks/events//resend
Resend a webhook event
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Manually trigger a resend of a specific webhook event to its subscription endpoint.
Request
POST /webhooks/events/{event_id}/resend
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| event_id | string | Yes | The ID of the event to resend |
Example Request
POST /webhooks/events/evt_abc123/resend
Example Response
{
"id": "evt_abc123",
"status": "pending",
"message": "Event queued for redelivery"
}Use Cases
- Recovering from temporary endpoint failures
- Debugging webhook integration issues
- Replaying events after fixing your webhook handler
Notes
- The event payload will be identical to the original delivery
- A new
X-JWT-SIGNATUREwill be generated with a current timestamp - The resent event counts as a new delivery attempt
