PLATFORM RC-90 — Webhooks Delivery History (v1) (0.1.0)

Download OpenAPI specification:

List delivery attempts

query Parameters
subscription_id
string
delivery_id
string
status
string
Enum: "queued" "delivered" "failed" "disabled" "replayed_blocked"
created_at_from
string <date-time>
created_at_to
string <date-time>
limit
integer [ 1 .. 200 ]
Default: 50
cursor
string

Responses

Response samples

Content type
application/json
{
  • "items": [
    ],
  • "next_cursor": "string"
}

Get a delivery attempt by delivery_id

path Parameters
delivery_id
required
string

Responses

Response samples

Content type
application/json
{
  • "delivery_id": "string",
  • "subscription_id": "string",
  • "event_id": "string",
  • "event_type": "string",
  • "attempt_no": 1,
  • "status": "queued",
  • "http_status": 0,
  • "error_code": "string",
  • "created_at": "2019-08-24T14:15:22Z",
  • "next_attempt_at": "2019-08-24T14:15:22Z",
  • "idempotency_key": "string",
  • "signature_version": "string",
  • "request_headers_redacted": {
    },
  • "response_headers_redacted": {
    },
  • "response_body_truncated": "string",
  • "latency_ms": 0
}