Retrieve a paginated list of delivery attempts (logs) for a specific webhook.
Request
Add parameter in header X-API-Key
Example:X-API-Key: ********************
or
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Request Code Samples
curl --location 'https://api.financialreports.eu/webhooks//deliveries/' \
--header 'x-api-key;' \
--header 'X-API-Key: <api-key>'
Responses
Successfully retrieved delivery logs.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
"webhook_id": 0,
"event_type": "string",
"filing_id": 0,
"status": "pending",
"response_status_code": 0,
"duration_ms": 0,
"created_at": "2019-08-24T14:15:22.123Z"
}
]
}
Modified at 2026-09-11 14:56:11