BioFlow
API Reference

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…

POST
/v1/webhook-endpoints/{endpoint_id}/deliveries/{delivery_id}/resend

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.

Authorization

AuthorizationBearer <token>

API key (bf_live_… / bf_test_…) as a Bearer token.

In: header

Path Parameters

endpoint_id*string
Length1 <= length
delivery_id*string

Delivery ID from List deliveries

Length1 <= length

Response 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"    }  ]}