Skip to main content
GET
/
core
/
webhook-logs
List Webhook Logs
curl --request GET \
  --url https://api.integrations.commenda.io/v4/core/webhook-logs \
  --header 'api_key: <api-key>'
{
  "data": {
    "webhookLogs": [
      {
        "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
        "webhookName": "Connection webhook",
        "webhookUrl": "https://example.com/webhooks/rootfi",
        "state": "DELIVERED",
        "latestStatusCode": 200,
        "attemptCount": 1,
        "eventType": "CONNECTION_CHANGED",
        "integration": null,
        "syncId": null,
        "createdAt": "2026-05-20T07:10:02.931Z",
        "updatedAt": "2026-05-20T07:10:03.120Z"
      }
    ],
    "count": 1,
    "next": null
  },
  "request_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

Documentation Index

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

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

List webhook delivery logs. Results are ordered by creation time (newest first).

Query Parameters

ParameterTypeDefaultDescription
limitinteger20Page size (max 100).
cursorstringReturn deliveries after this delivery id.
stateenumFilter by PENDING, PROCESSING, DELIVERED, FAILED.
fromDatestringInclude deliveries on or after this time (ISO 8601).
toDatestringInclude deliveries on or before this time (ISO 8601).
webhookIdintegerFilter by webhook config ID (rootfi_id).
syncIdstringFilter by sync ID.

Response

Returns { data: { webhookLogs, count, next }, request_id }.
FieldTypeDescription
webhookLogsarrayDelivery log objects. See overview.
countintegerTotal deliveries matching the filter.
nextstring | nullCursor for the next page, or null.

Authorizations

api_key
string
header
required

Query Parameters

limit
integer
default:20

Page size (max 100).

Required range: 1 <= x <= 100
cursor
string

Return deliveries after this delivery ID.

state
enum<string>

Filter by delivery state.

Available options:
PENDING,
PROCESSING,
DELIVERED,
FAILED
fromDate
string<date-time>

Include deliveries created on or after this time (ISO 8601).

toDate
string<date-time>

Include deliveries created on or before this time (ISO 8601).

webhookId
integer

Filter by webhook config ID (rootfi_id).

syncId
string

Filter by sync ID.

Response

Paginated webhook log list.

request_id
string
required
data
V4ListWebhookLogsResponse · object
required