Webhooks

List recent webhook delivery logs

GET
/api/v1/webhooks/config/logs

Scope: webhooks:manage

Recent delivery attempts with the HTTP status your endpoint returned — the first place to look when an event seems to have been missed.

Authorization

AuthorizationBearer <token>

Use Authorization: Bearer vrf_live_... or vrf_test_....

In: header

Query Parameters

page?integer

Zero-based page index.

Range0 <= value
Default0
size?integer

Items per page.

Range1 <= value <= 200
Default20

Response Body

application/json

curl -X GET "https://example.com/api/v1/webhooks/config/logs"
{  "page": 0,  "size": 0,  "totalElements": 0,  "totalPages": 0,  "first": true,  "last": true,  "content": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "eventType": "report.created",      "url": "http://example.com",      "status": "SUCCESS",      "httpStatus": 0,      "error": "string",      "createdAt": "2019-08-24T14:15:22Z"    }  ]}