Skip to main content
GET
/
v1
/
webhooks
/
{webhook_id}
/
deliveries
List Webhook Deliveries
curl --request GET \
  --url https://api.example.com/v1/webhooks/{webhook_id}/deliveries
import requests

url = "https://api.example.com/v1/webhooks/{webhook_id}/deliveries"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/v1/webhooks/{webhook_id}/deliveries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "deliveries": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "webhook_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event": "<string>",
      "payload": {},
      "status": "<string>",
      "attempts": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "http_status": 123,
      "last_attempt_at": "2023-11-07T05:31:56Z",
      "next_retry_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Headers

authorization
string | null

Path Parameters

webhook_id
string<uuid>
required

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

deliveries
WebhookDeliveryResponse · object[]
required
total
integer
required