BioFlow / API docs / resendWebhookDelivery

Resend a delivery.

POST /v1/webhook-endpoints/{endpoint_id}/deliveries/{delivery_id}/resend
scope: webhooks:writeCreator & Pro plansquota cost: 1send an Idempotency-Key

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.

Try it

Request.

curl "https://app.getbioflow.com/v1/webhook-endpoints/ENDPOINT_ID/deliveries/DELIVERY_ID/resend" \ -X POST \ -H "Authorization: Bearer bf_live_YOUR_KEY" \ -H "Idempotency-Key: a-unique-id-per-attempt"
Parameters

Path & query parameters.

Parameters accepted by resendWebhookDelivery
NameInTypeRequiredDescription
endpoint_idpathstringyes
delivery_idpathstringyesDelivery ID from List deliveries
Response

200The re-queued delivery.

Fields of the 200 response for resendWebhookDelivery
FieldTypeDescription
idstring
event_idstring
event_typestring
statusPENDING | SUCCEEDED | FAILED
attempt_countinteger
next_attempt_atstring (ISO 8601) | nullWhen the next automatic attempt is due (PENDING only)
last_status_codeinteger | null
created_atstring (ISO 8601)
attemptsarray<object>

Every response also carries X-Request-Id plus the IETF draft-11 RateLimit / RateLimit-Policy headers.

Errors

What can go wrong here.

Problem codes this operation can return
CodeStatusMeaning
invalid_request400The request body or parameters failed validation
invalid_api_key401Missing, malformed, unknown, disabled, or expired API key
insufficient_scope403The API key was not granted the required scope
feature_not_enabled403The workspace plan does not include public API access
test_key_read_only403Test-mode keys are restricted to read operations
rate_limited429Per-key rate limit exceeded
quota_exhausted429Monthly API quota exhausted
internal_error500Something went wrong on our side

All errors are RFC 9457 application/problem+json — branch on code, quote request_id to support. Full registry on the API docs hub; interactive playground in the API reference.