---
title: "List deliveries"
method: GET
path: "/webhooks/{webhook_id}/deliveries"
tags: ["Webhooks"]
---

# List deliveries

`GET /webhooks/{webhook_id}/deliveries`

Returns a paginated list of delivery attempts for a webhook, ordered by most recent first. Includes the request payload, response body, response code, and timing for each attempt.

Required permissions:
 - `developer:manage_webhook`

## Path parameters

- `webhook_id` string, required

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.

## Response `200`

A successful response

- object — The connection type for WebhookLog.
  - `data` object[], required — A list of nodes.
    - `request_body` object, required — The request body sent to the webhook endpoint
    - `resource_id` string, required — The ID of the resource that triggered the webhook
    - `response_body` object, required — The response body received from the webhook endpoint
    - `response_code` integer, required — The HTTP response code received from the webhook endpoint
    - `sent_at` string, date-time, required — The timestamp when the webhook was sent
    - `total_time` number, required — The total time taken to send the webhook request in seconds
  - `page_info` object, required — Information to aid in pagination.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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