https://api.veriko.mx/v1/webhooks/deliveries/exportExport all deliveries as CSV or XLSX
How-to guide →Downloads the delivery history of every endpoint on the account as a file, under the same filters as the list: endpoint, status, and event type. The format is chosen with ?format — csv by default, xlsx as the alternative — and the cap is 100,000 rows, which ?limit can lower. Exporting before deleting an endpoint is worth doing: DELETE /v1/webhooks/{id} takes its history with it and there is no way to recover it.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
endpoint_id | query | string (uuid) | optional | Filter by a specific endpoint UUID (same as 7c9e6679-7425-40de-944b-e07fc1f90ae7 |
event_type | query | string | optional | Type of event that produced the delivery.
From a validation's lifecycle: validation.completed |
format | query | string | optional | Output format. Default: csv |
limit | query | integer | optional | Trims the number of rows in the file. It only lowers the cap: a value above 100,000, or below 1, leaves the default cap in place. e.g.500 |
status | query | string | optional | Outcome of the delivery attempt. failed |
curl -X GET 'https://api.veriko.mx/v1/webhooks/deliveries/export' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | CSV file with the consolidated delivery history across all endpoints (up to 100,000 rows). | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| 429 | 4xx | Rate limit exceeded | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|
| 429 | rate_limit_exceeded | Rate limit exceeded. Try again in 45 seconds. Envelope
Response headers
|