List webhook delivery logs

Returns recent deliveries for a webhook endpoint, each naming the event type and time it was made for, with its nested attempt diagnostics.

GET
/v1/webhooks/{webhookId}/logs

Returns recent deliveries for a webhook endpoint, each naming the event type and time it was made for, with its nested attempt diagnostics.

x-api-key<token>

In: header

Path Parameters

webhookId*string
Match^wep_[0-9a-hjkmnp-tv-z]{16,24}$

Query Parameters

limit?string|null

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/webhooks/string/logs"
{  "data": [    {      "id": "string",      "eventId": "string",      "eventType": "string",      "occurredAt": "string",      "endpointId": "string",      "status": "pending",      "automaticAttempts": 0,      "nextAttemptAt": "string",      "completedAt": "string",      "createdAt": "string",      "updatedAt": "string",      "attempts": [        {          "id": "string",          "deliveryId": "string",          "kind": "automatic",          "attemptNumber": 1,          "classification": "success",          "attemptedAt": "string",          "responseStatus": 0,          "responseHeaders": {            "property1": "string",            "property2": "string"          },          "durationMs": 0,          "errorCode": "string",          "errorMessage": "string",          "createdAt": "string"        }      ]    }  ],  "hasMore": true}