# Retrieve a delivery attempt

`GET https://api.cademi.com.br/api/v3/webhooks/{webhook_id}/deliveries/{webhook_delivery_id}/attempts/{attempt_id}`

Operation ID: `webhooks.deliveries.attempts.get` · API v3

Retrieves a single attempt of a webhook delivery. The response excerpt captured from the receiving endpoint is masked.

Required permissions: `webhooks.deliveries.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `webhook_id` | path | string | yes |  |
| `webhook_delivery_id` | path | string | yes |  |
| `attempt_id` | path | string | yes |  |

## Responses

### 200

Returns the requested delivery attempt.

Body: `data`: WebhookDeliveryAttempt.

Fields of WebhookDeliveryAttempt:

| Field | Type | Required | Description |
|---|---|---|---|
| `duration_ms` | integer or null | no |  |
| `finished_at` | string or null (date-time) | no |  |
| `http_status` | integer or null | no |  |
| `next_attempt_at` | string or null (date-time) | no |  |
| `number` | integer | yes |  |
| `object` | string, one of `webhook_delivery_attempt` | yes |  |
| `origin` | string, one of `automatic`, `manual`, `replay` | yes |  |
| `response_excerpt` | string or null | no |  |
| `started_at` | string (date-time) | yes |  |
| `transport_error` | string or null | no |  |

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The webhook endpoint, delivery, or attempt was not found or is not accessible with the current credentials.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
