---
title: "List webhook deliveries"
method: GET
path: "/v2/webhooks/{teamId}/{webhookId}/deliveries"
---

# List webhook deliveries

`GET /v2/webhooks/{teamId}/{webhookId}/deliveries`

An endpoint's deliveries, newest first, with optional status / type / time-range filters and cursor pagination.

## Path parameters

- `teamId` string, uuid, required
- `webhookId` string, uuid, required

## Query parameters

- `status` 'success' | 'failed'
- `type` 'delivery' | 'verification' | 'all'
- `before` string, date-time
- `after` string, date-time
- `cursor` string
- `limit` integer

## Response `200`

A page of deliveries.

- WebhookDeliveryList
  - `data` WebhookDelivery[], required
    - `delivery_id` string, uuid, required
    - `webhook_id` string, uuid, required
    - `team_id` string, uuid, nullable
    - `type` 'delivery' | 'verification', required
    - `event` string, nullable — Event name (e.g. `webhook.test`); `verification` for handshake runs.
    - `url` string
    - `status` 'success' | 'failed', required
    - `status_code` integer, nullable — HTTP status of the latest attempt; null on a transport error.
    - `attempts` integer, nullable — Number of attempts made so far (including async retries).
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, nullable
  - `next_cursor` string, nullable — Pass as `cursor` to fetch the next page; null when there are no more.

## Other responses

- `400` — Request validation failed. Inspect `error.errors` for field-level details.
- `401` — Missing or invalid credentials.
- `403` — Authenticated but not permitted to perform this action.
- `404` — Resource or route does not exist.

---

[API](https://skmtc.net/micro-so/apis/prism.md) · [All operations](https://skmtc.net/micro-so/apis/prism/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/micro-so/prism/versions/558afa74332e/schema)
