---
title: "List webhook deliveries"
method: GET
path: "/webhook_deliveries"
tags: ["Webhook Deliveries"]
---

# List webhook deliveries

`GET /webhook_deliveries`

Returns webhook delivery attempts for your project, most recent first.

## Query parameters

- `status` 'pending' | 'delivered' | 'failed'
- `event` string
- `webhook_id` string, uuid
- `errors_only` boolean
- `period` '24h' | '7d' | '30d'
- `limit` integer
- `before` string
- `after` string

## Response `200`

Success

- WebhookDeliveryListResponse
  - `data` WebhookDelivery[], required
    - `id` string, uuid, required
    - `event` string, required — The webhook event type
    - `status` 'pending' | 'delivered' | 'failed', required
    - `response_status` integer, nullable — HTTP response status code from the webhook endpoint
    - `delivered_at` string, date-time, nullable
    - `failed_at` string, date-time, nullable
    - `last_attempt_at` string, date-time, nullable
    - `attempt_count` integer, required
    - `created_at` string, date-time, required
    - `webhook_id` string, uuid, nullable
    - `webhook_url` string, nullable
    - `whatsapp_config_id` string, uuid, nullable
    - `phone_number_id` string, nullable — Meta phone number ID
    - `conversation_phone_number` string, nullable — Phone number of the conversation associated with the delivery
  - `paging` Paging, required
    - `cursors` PaginationCursor
      - `before` string — Cursor for previous page (Base64 encoded)
      - `after` string — Cursor for next page (Base64 encoded)
    - `next` string, nullable
    - `previous` string, nullable

## Other responses

- `401` — Missing or invalid API key

---

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