https://api.veriko.mx/v1/webhooks/{id}/deliveriesList deliveries for an endpoint
How-to guide →Returns the 50 most recent delivery attempts for a specific endpoint, with HTTP status code, response time, and truncated response body. Useful for diagnosing delivery failures.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
id* | path | string (uuid) | required | UUID of the webhook endpoint. e.g.f47ac10b-58cc-4372-a567-0e02b2c3d479 |
page | query | integer | optional | Page requested, starting at 1. Default: 1 |
per_page | query | integer | optional | How many deliveries each page carries. Default: 50 |
curl -X GET 'https://api.veriko.mx/v1/webhooks/{id}/deliveries' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
type* | string | Resource type, fixed for this operation. Part of the resource identity in the JSON:API envelope. Always webhook_delivery |
id* | string | Auto-increment delivery identifier. e.g.48211 |
attributes* | object | Canonical webhook delivery attributes (receiver endpoint, attempt, response, and status). |
endpoint_id | string (uuid) | UUID of the webhook endpoint that originated this delivery. e.g.a1b2c3d4-e5f6-7890-abcd-ef0123456789 |
endpoint_url | string | Receiver endpoint URL. Only present on the cross-endpoint feed ( https://erp.example.com/hooks/pagos |
event_type | string | Event type that triggered the delivery. Determines the shape of the HMAC-signed payload sent to the receiver. The events are validation.completed |
validation_id | string | nullnullable | Validation UUID when the event is a1b2c3d4-e5f6-7890-abcd-ef0123456789 |
response_status | integer | nullnullable | HTTP code returned by the receiver. 100 |
response_body | string | nullnullable | Receiver response body, truncated to 500 characters. e.g.{"ok":true} |
response_time_ms | integer | nullnullable | Total request time in milliseconds. e.g.184 |
attempt | integer | Attempt number (1 = first send, >1 = retries). e.g.1 |
status | string | Current delivery status. pending |
next_retry_at | TimestampUTC | null | UTC ISO 8601 of the next scheduled retry. |
error_message | string | nullnullable | Error message if the delivery failed ( Connection timed out after 10s |
created_at | string (date-time) | ISO 8601 timestamp in UTC with explicit 2026-05-01T05:14:38Z |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | Paginated delivery attempts for this endpoint with HTTP status, response time, and truncated response body. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| 404 | 4xx | not_found — endpoint does not exist or does not belong to the user. | 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
|