v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
Webhooks

Get webhook delivery logs

<small>Requires the webhooks:read scope (or a broader one that includes it).</small>

Returns a paginated failure log for a single subscription — only failed delivery attempts are recorded here; successful deliveries are not listed. Each log entry captures the triggering event id, HTTP status (or null when the request could not be completed) and the UTC timestamp of the attempt.

get/v3/webhooks/{id}/logs

Path parameters

idinteger required

Webhook subscription ID.

Query parameters

topinteger

Maximum number of log entries to return.

skipinteger

Number of log entries to skip.

Response

Paginated delivery-log entries.

hasMoreboolean

Whether more items are available beyond the current page..

Example response

{
  "items": [
    {
      "eventId": "9a7d53be-b7d6-4a9d-9f1a-77ab7f4c5f1a",
      "httpStatus": 200,
      "date": "2026-04-17T12:05:34+00:00"
    }
  ]
}