---
title: "List webhook deliveries"
method: GET
path: "/v1/webhooks/deliveries"
tags: ["Webhooks"]
---

# List webhook deliveries

`GET /v1/webhooks/deliveries`

List the most recent webhook delivery attempts (up to 100) for the tenant, newest first. Pass the optional `endpoint` query parameter to filter to a single endpoint.

## Query parameters

- `endpoint` string, uuid

## Response `200`

A bare JSON array of webhook delivery objects.

- object[]
  - `id` string, uuid — You receive the UUID for this delivery attempt.
  - `endpoint_id` string, uuid — You receive the UUID of the endpoint this delivery targeted.
  - `endpoint_label` string — You receive the label of the endpoint this delivery targeted.
  - `event_type` string — You receive the event type that was delivered.
  - `event_id` string — You receive the unique event identifier carried in the payload.
  - `request_url` string, uri — You receive the URL the delivery was POSTed to.
  - `response_status` integer, nullable — You receive the HTTP status code returned by the endpoint, or null when the request never completed.
  - `response_time_ms` integer, nullable — You receive the round-trip time in milliseconds, or null when the request never completed.
  - `status` string — You receive the delivery status (for example `delivered`, `failed`, or `pending`).
  - `retries` integer — You receive the number of retry attempts made for this delivery.
  - `last_retry_at` string, date-time, nullable — You receive the timestamp of the most recent retry, or null when there was none.
  - `created_at` string, date-time — You receive the timestamp when the delivery was enqueued.

---

[API](https://skmtc.net/didit-protocol/apis/didit-credentials-api.md) · [All operations](https://skmtc.net/didit-protocol/apis/didit-credentials-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/didit-protocol/didit-credentials-api/revisions/e4eddba66557/schema)
