v50

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-102991198.1 KB
Retry

Retry Event Delivery

Triggers a retry for delivering an event to a destination. The event must exist and the destination must be enabled and match the event's topic.

When authenticated with a Tenant JWT, only events belonging to that tenant can be retried. When authenticated with Admin API Key, events from any tenant can be retried.

post/retry

Request body

event_idstring required

The ID of the event to retry.

destination_idstring required

The ID of the destination to deliver to.

Example request

{
  "event_id": "evt_123",
  "destination_id": "des_456"
}

Response

Retry accepted for processing.

successboolean

Example response

{
  "success": true
}