---
title: "Get Webhook Delivery"
method: GET
path: "/webhooks/{id}/deliveries/{deliveryId}"
tags: ["Webhooks"]
---

# Get Webhook Delivery

`GET /webhooks/{id}/deliveries/{deliveryId}`

Get detailed information about a specific webhook delivery,
including the full payload and response body.

## Path parameters

- `id` string, uuid, required
- `deliveryId` string, uuid, required

## Query parameters

- `team_id` string, uuid, required

## Response `200`

Webhook delivery details

- WebhookDeliveryResponse
  - `success` boolean
  - `request_id` string
  - `data` WebhookDeliveryDetail
    - `object` string
    - `id` string, uuid
    - `event_id` string, uuid — Deterministic event ID for deduplication
    - `event_type` string — Event type (reply, open, click, bounce, etc.)
    - `status` 'pending' | 'delivered' | 'failed' | 'retrying' — Current delivery status
    - `attempt_count` integer — Number of delivery attempts made
    - `max_attempts` integer — Maximum retry attempts (default 7)
    - `response_status` integer, nullable — HTTP response status code
    - `response_time_ms` integer, nullable — Response latency in milliseconds
    - `error_message` string, nullable — Error message if delivery failed
    - `created_at` string, date-time
    - `last_attempt_at` string, date-time, nullable
    - `delivered_at` string, date-time, nullable
    - `next_retry_at` string, date-time, nullable
    - `contact` object, nullable
      - `id` string, uuid
      - `email` string, email
      - `name` string, nullable
    - `campaign` object, nullable
      - `id` string, uuid
      - `name` string
    - `payload` object — Full webhook payload
    - `response_body` string, nullable — Response body from webhook endpoint
    - `response_headers` object, nullable — Response headers from webhook endpoint

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Access denied
- `404` — Not Found - Resource does not exist

---

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