DELETE
https://api.veriko.mx/v1/validations/{id} Delete a validation
How-to guide →Removes (soft-delete) a validation from the user's history. Only the owner can delete it. The record stops appearing in the list and statistics by default; pass with_deleted=1 on GET /v1/validations to list only soft-deleted rows. The operation is per row — there is no bulk purge endpoint on the public API.
| 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 mxcep_••••' \
-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 | Permisos insuficientes | 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 | Detail |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|
| 403 | forbidden | You do not have permission to access this resource. Envelope
|