---
title: "Retrieve webhook failure"
method: GET
path: "/seller/webhooks/{webhookId}/failures/{failureId}"
tags: ["seller-webhooks"]
---

# Retrieve webhook failure

`GET /seller/webhooks/{webhookId}/failures/{failureId}`

Retrieve detailed metadata for one recorded delivery failure.

Use this endpoint after listing failures to inspect a specific failed attempt in detail.

The response provides failure-level diagnostics including:

- Receiver HTTP status code.
- Delivery latency.
- Failure reason.
- Timestamp and HAR key reference.

Behavior notes:

- Returns 404 if the webhook is not found for the seller.
- Returns 404 if the specified failure id is not associated with that webhook.

For full request/response trace data, call the HAR download endpoint for the same failure id.

## Path parameters

- `webhookId` string, required — Identifier of the webhook endpoint that experienced the failure
- `failureId` string, required — Identifier of the failure to retrieve

## Response `200`

Webhook delivery failure

- SellerWebhookFailure — Represents a recorded failure of a webhook delivery attempt.
  - `id` string, required — Unique identifier for the webhook failure
  - `responseStatusCode` integer, required — HTTP response status code returned by the endpoint
  - `responseTime` integer, required — Time taken for the endpoint to respond in milliseconds
  - `reason` string, required — Reason describing why the delivery failed
  - `harKey` string, required — Key for the HAR payload stored within the R2 bucket
  - `createdAt` string, date-time, required — Timestamp when the failure was recorded

## Other responses

- `404` — Webhook, seller, or failure not found

---

[API](https://skmtc.net/managem/apis/managem-api.md) · [All operations](https://skmtc.net/managem/apis/managem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/managem/managem-api/versions/6367b514f6ea/schema)
