> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bleepay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhook Delivery

> Retrieve a single webhook delivery by its ID.

`GET /api/v1/businesses/:businessId/webhook-deliveries/:deliveryId`

Returns the full details of a webhook delivery attempt, including request/response information.

## Parameters

### Path

| Name         | Type     | Required | Description     |
| ------------ | -------- | -------- | --------------- |
| `businessId` | `string` | Yes      | The business ID |
| `deliveryId` | `string` | Yes      | The delivery ID |

## Request example

```shell theme={null}
curl --request GET 'https://payments.bleepay.com/api/v1/businesses/biz_abc/webhook-deliveries/dly_abc123' \
  --header 'Authorization: Bearer <business_token>'
```

## Response

### Response schema

| Field           | Type                | Description                                     |
| --------------- | ------------------- | ----------------------------------------------- |
| `id`            | `string`            | Delivery identifier                             |
| `eventType`     | `string`            | Event type                                      |
| `endpointId`    | `string`            | The endpoint this delivery was sent to          |
| `status`        | `string`            | `PENDING`, `DELIVERED`, `FAILED`, or `RETRYING` |
| `attempts`      | `integer`           | Number of attempts                              |
| `requestUrl`    | `string`            | URL the request was sent to                     |
| `requestBody`   | `string`            | JSON payload that was sent                      |
| `responseCode`  | `integer` or `null` | HTTP response code from the endpoint            |
| `responseBody`  | `string` or `null`  | Response body from the endpoint                 |
| `lastAttemptAt` | `string` or `null`  | ISO 8601 last attempt timestamp                 |
| `createdAt`     | `string`            | ISO 8601 creation timestamp                     |
