---
title: "Get a delivery"
method: GET
path: "/v2/webhooks/{teamId}/{webhookId}/deliveries/{deliveryId}"
---

# Get a delivery

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

A single delivery plus its full attempt timeline (including async retries).

## Path parameters

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

## Response `200`

The delivery and its attempts.

- WebhookDeliveryDetail — A webhook delivery — one logical event delivery to an endpoint, grouping its attempts. Status and status_code reflect the latest attempt.
  - `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
  - `attempt_history` WebhookAttempt[]
    - `attempt` integer, required — 1-based attempt number.
    - `status` 'success' | 'failed', required
    - `status_code` integer, nullable
    - `error` string, nullable — Failure reason, when status is failed.
    - `request_body` string, nullable — Body sent to the endpoint (delivery only); may be truncated.
    - `response_body` string, nullable — Body returned by the endpoint; may be truncated.
    - `created_at` string, date-time, required

## Other responses

- `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)
