Skip to main content
GET
/
v3
/
webhooks
/
{id}
/
logs
Get webhook delivery logs
curl --request GET \
  --url https://api.reply.io/v3/webhooks/{id}/logs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "eventId": "9a7d53be-b7d6-4a9d-9f1a-77ab7f4c5f1a",
      "httpStatus": 200,
      "date": "2026-04-17T12:05:34+00:00"
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Webhook subscription ID.

Query Parameters

top
integer

Maximum number of log entries to return.

Required range: x >= 1
skip
integer

Number of log entries to skip.

Required range: x >= 0

Response

Paginated delivery-log entries.

items
WebHookLog · object[]
hasMore
boolean

Whether more items are available beyond the current page.