---
title: "Retrieve webhook delivery"
method: GET
path: "/v1/webhook_deliveries/{id}"
tags: ["Webhook Deliveries"]
---

# Retrieve webhook delivery

`GET /v1/webhook_deliveries/{id}`

Retrieves a webhook delivery by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

The webhook delivery resource

- WebhookDeliveryResourceDto
  - `id` string, uuid, required — Unique identifier of the webhook delivery.
  - `type` 'webhook_delivery', required — Resource type discriminator.
  - `event_id` string, uuid, required — Identifier of the event this delivery was for.
  - `subscription_id` string, uuid, required — Identifier of the webhook subscription this delivery targeted.
  - `status` 'pending' | 'delivered' | 'failed' | 'processing' | 'ignored', required — Current status of the delivery.
  - `attempts` object[], required — Ordered list of HTTP delivery attempts for this delivery.
    - `attempted_at` string, date-time, required — ISO 8601 UTC timestamp when this attempt resolved.
    - `status` 'pending' | 'delivered' | 'failed' | 'processing' | 'ignored', required — Current status of the delivery.
    - `status_code` integer, required — HTTP status code returned by the receiver for this attempt.
  - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the delivery was created.
  - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the delivery was last updated.

## Changes

- **2026-04-22** `7e26180bf667` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/webhook_deliveries/:id/get.md)

---

[API](https://skmtc.dev/augustus/apis/augustus-banking-api.md) · [All operations](https://skmtc.dev/augustus/apis/augustus-banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/augustus/augustus-banking-api/revisions/37109d1ed976/schema)
