Brault Developers

Redeliver one delivery

Regionalus.api.brault.appfollows the region selector in the top bar
POST
/v1/webhooks/{webhookId}/deliveries/{deliveryId}/redeliver

Queues a NEW delivery for the same event: attempt restarts at 1, origin is "redeliver" and replayed_from_id names the row it came from. The source row is not touched. Brault-Event-Id is unchanged, so a receiver deduplicating on it — as this API has always asked — sees a duplicate and drops it. Allowed only when the source delivery is success or exhausted, is not a webhook.test row, the endpoint is active, and the event payload is still inside the 30-day window.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

webhookId*string
deliveryId*string

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/webhooks/string/deliveries/string/redeliver"
{  "object": "delivery",  "id": "string",  "webhook_id": "string",  "event_id": "string",  "event_type": "string",  "status": "pending",  "attempt": 1,  "scheduled_at": "2019-08-24T14:15:22Z",  "delivered_at": "2019-08-24T14:15:22Z",  "http_status": 0,  "duration_ms": 0,  "error_code": "string",  "response_excerpt": "string",  "request_id": "string",  "origin": "fanout",  "replayed_from_id": "string",  "created_at": "2019-08-24T14:15:22Z"}