DELETE
https://api.veriko.mx/v1/validations/{id}Delete a validation
How-to guide →Withdraws a validation from the history. The record is not destroyed: it stops appearing in the list and in the statistics, and remains available to anyone asking for it with with_deleted=1 on GET /v1/validations. Only the validation's owner can withdraw it, and the operation is row by row: the public API offers no bulk deletion.
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
id* | path | string (uuid) | required | Validation UUID. |
curl -X DELETE 'https://api.veriko.mx/v1/validations/{id}' \
-H 'Authorization: Bearer veriko_••••' \
-H 'Content-Type: application/json'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Status | Class | Description | Body |
|---|---|---|---|
| 204 | 2xx | Validation deleted successfully. Empty body. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| 403 | 4xx | Insufficient permissions. | ErrorResponse |
| 404 | 4xx | Validation not found or does not belong to the authenticated user. | ErrorResponse |
| 422 | 4xx | Invalid UUID in path (invalid_uuid). | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|