Webhooks
List recent webhook delivery 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.
AuthorizationBearer <token>
Use Authorization: Bearer vrf_live_... or vrf_test_....
In: header
Query Parameters
page?integer
Zero-based page index.
Range
0 <= valueDefault
0size?integer
Items per page.
Range
1 <= value <= 200Default
20Response 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" } ]}