---
title: "List webhook delivery logs"
method: GET
path: "/accounts/{account_id}/webhooks/deliveries"
tags: ["Webhooks"]
---

# List webhook delivery logs

`GET /accounts/{account_id}/webhooks/deliveries`

Returns outbound delivery attempts for webhook subscriptions owned by the account, newest first, with cursor pagination (`page[size]`, and either `page[after]` or `page[before]` — not both).

## Path parameters

- `account_id` string, required — ID of the resource

## Query parameters

- `page` PagingParameters — Paging query parameters
  - `after` string
  - `before` string
  - `size` integer

## Response `200`

OK

- WebhookDeliveryLogList
  - `deliveries` WebhookDeliveryLog[], required — Delivery attempts, newest `inserted_at` first.
    - `attempt_number` integer, required
    - `event_id` string, required — Envelope id for the event (e.g. payment id for `payment.completed`, transfer / order id for `transfer.completed`, `transfer.canceled`, or `transfer.created`).
    - `failure_message` string, nullable — Present when the attempt failed.
    - `id` string, required — ID of the resource
    - `inserted_at` string, date-time, required — ISO-8601 timestamp that includes date and time
    - `status_code` string, required — HTTP status as string, or a short code such as `request_timeout`.
    - `subscription_id` string, required — ID of the resource
  - `pagination` Pagination, required — Pagination information for list endpoints
    - `next` string, nullable — Cursor for the next page of results
    - `page_size` integer — Number of items per page
    - `prev` string, nullable — Cursor for the previous page of results

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/brale/apis/brale-api.md) · [All operations](https://skmtc.net/brale/apis/brale-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/brale/brale-api/revisions/7446d49997c2/schema)
