Skip to main content
Retrieve a single webhook delivery by its ID.
GET /api/v1/businesses/:businessId/webhook-deliveries/:deliveryId Returns the full details of a webhook delivery attempt, including request/response information.

Parameters

Path

NameTypeRequiredDescription
businessIdstringYesThe business ID
deliveryIdstringYesThe delivery ID

Request example

curl --request GET 'https://payments.bleepay.com/api/v1/businesses/biz_abc/webhook-deliveries/dly_abc123' \
  --header 'Authorization: Bearer <business_token>'

Response

Response schema

FieldTypeDescription
idstringDelivery identifier
eventTypestringEvent type
endpointIdstringThe endpoint this delivery was sent to
statusstringPENDING, DELIVERED, FAILED, or RETRYING
attemptsintegerNumber of attempts
requestUrlstringURL the request was sent to
requestBodystringJSON payload that was sent
responseCodeinteger or nullHTTP response code from the endpoint
responseBodystring or nullResponse body from the endpoint
lastAttemptAtstring or nullISO 8601 last attempt timestamp
createdAtstringISO 8601 creation timestamp