Resend a delivery
POST /v1/webhook-endpoints/{endpoint_id}/deliveries/{delivery_id}/resend — Re-queue ONE delivery for immediate redelivery, restarting its retry ladder. The…
Re-queue ONE delivery for immediate redelivery, restarting its retry ladder. The webhook-id stays the same — consumers deduplicate on it.
Requires scope: webhooks:write. Plan entitlement: public_api (Creator and Pro).
Consequential operation — send an Idempotency-Key header.
API key (bf_live_… / bf_test_…) as a Bearer token.
In: header
Path Parameters
1 <= lengthDelivery ID from List deliveries
1 <= lengthResponse Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X POST "https://example.com/v1/webhook-endpoints/string/deliveries/string/resend"{ "id": "string", "event_id": "string", "event_type": "string", "status": "PENDING", "attempt_count": 0, "next_attempt_at": "2019-08-24T14:15:22Z", "last_status_code": -9007199254740991, "created_at": "2019-08-24T14:15:22Z", "attempts": [ { "number": 1, "status_code": -9007199254740991, "error": "string", "duration_ms": 0, "at": "2019-08-24T14:15:22Z" } ]}List deliveries GET
GET /v1/webhook-endpoints/{endpoint_id}/deliveries — The endpoint's delivery log, newest first, cursor-paginated, with per-attempt status codes, bounded error…
Replay failed deliveries POST
POST /v1/webhook-endpoints/{endpoint_id}/replay — Bulk recovery: re-queue every FAILED delivery created since the given instant (last 30 days). Use after…