BioFlow
API Reference

List deliveries

GET /v1/webhook-endpoints/{endpoint_id}/deliveries — The endpoint's delivery log, newest first, cursor-paginated, with per-attempt status codes, bounded error…

GET
/v1/webhook-endpoints/{endpoint_id}/deliveries

The endpoint's delivery log, newest first, cursor-paginated, with per-attempt status codes, bounded error summaries, and the next automatic retry time.

Requires scope: webhooks:read. Plan entitlement: public_api (Creator and Pro).

Authorization

AuthorizationBearer <token>

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

In: header

Path Parameters

endpoint_id*string

Endpoint ID from List webhook endpoints

Length1 <= length

Query Parameters

limit?integer
Range1 <= value <= 100
Default25
after?string

Opaque cursor from a previous response

status?string

Value in

  • "PENDING"
  • "SUCCEEDED"
  • "FAILED"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/webhook-endpoints/string/deliveries"
{  "data": [    {      "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"        }      ]    }  ],  "has_more": true,  "next_cursor": "string"}