v1

latestOpenAPI 3.1.02026-07-2684271522.2 KB
Events

Retry Event

Redeliver an existing event to your webhook endpoints. The event is looked up by ID; a 404 is returned if no matching event exists.

If a webhook_id is supplied in the body, the original event is redelivered to that specific webhook endpoint and the stored event is returned. If no body is supplied, the event is redelivered to all of your configured webhook endpoints; in this mode only checkout.session.completed events are supported — the checkout session is re-fetched with its related objects expanded and a new event (with a fresh fevt_ id) is generated and delivered.

post/v1/events/{id}/retry

Path parameters

idstring required
Example:fevt_01J9XR8M3K7VZ8N2YB4WJ6T0RA

Request body

Example request

{
  "event": {
    "webhook_id": "fwh_01J9XR8M3K7VZ8N2YB4WJ6T0RA"
  }
}

Response

An envelope wrapping a single event object.

Example response

{
  "event": {
    "event_id": "fevt_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
    "event_type": "account.updated",
    "object": {},
    "test_mode": false,
    "created_at": "2026-06-15T14:30:00Z"
  }
}