---
title: "List deliveries for an organization webhook"
method: GET
path: "/orgs/{org}/hooks/{hook_id}/deliveries"
tags: ["orgs"]
---

# List deliveries for an organization webhook

`GET /orgs/{org}/hooks/{hook_id}/deliveries`

Returns a list of webhook deliveries for a webhook configured in an organization.

You must be an organization owner to use this endpoint.

OAuth app tokens and personal access tokens (classic) need `admin:org_hook` scope. OAuth apps cannot list, view, or edit
webhooks that they did not create and users cannot list, view, or edit webhooks that were created by OAuth apps.

## Path parameters

- `org` string, required
- `hook_id` integer, required

## Query parameters

- `per_page` integer
- `cursor` string
- `status` 'success' | 'failure'

## Response `200`

Response

- HookDeliveryItem[]
  - `id` integer, required — Unique identifier of the webhook delivery.
  - `guid` string, required — Unique identifier for the event (shared with all deliveries for all webhooks that subscribe to this event).
  - `delivered_at` string, date-time, required — Time when the webhook delivery occurred.
  - `redelivery` boolean, required — Whether the webhook delivery is a redelivery.
  - `duration` number, required — Time spent delivering.
  - `status` string, required — Describes the response returned after attempting the delivery.
  - `status_code` integer, required — Status code received when delivery was made.
  - `event` string, required — The event that triggered the delivery.
  - `action` string, nullable, required — The type of activity for the event that triggered the delivery.
  - `installation_id` integer, nullable, required — The id of the GitHub App installation associated with this event.
  - `repository_id` integer, nullable, required — The id of the repository associated with this event.
  - `throttled_at` string, date-time, nullable — Time when the webhook delivery was throttled.

## Other responses

- `400` — Bad Request
- `422` — Validation failed, or the endpoint has been spammed.

---

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