List all webhook event logs

Returns a list of webhook event logs. The webhook event logs are returned sorted by creation date in ascending order.

GET/v3/webhook-event-logs
JWT
webhookEventLog:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"
webhookIdobjectqueryUnique identifier for the webhook.
searchstringquerySearch string.
idobjectqueryID of the resource.
createdAtobjectqueryDate of creation
updatedAtobjectqueryDate of last update

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "url": "string",
    "event": "string",
    "status": "pending",
    "lastAttemptedAt": "2019-08-24T14:15:22Z",
    "attempts": 0,
    "requestBody": "string",
    "responseBody": "string",
    "responseStatusCode": 0,
    "errorMessage": "string",
    "webhookId": "string"
  }
]