https://api.veriko.mx/v1/users/me/retry-policyGet default retry policy
How-to guide →Returns the retry policy configured for the authenticated user. This policy is applied to all validations that do not specify a retry_policy in the body of POST /v1/validate(-ocr).
curl -X GET 'https://api.veriko.mx/v1/users/me/retry-policy' \
-H 'Authorization: Bearer veriko_••••'Python example — coming soon.
JavaScript example — coming soon.
PHP example — coming soon.
| Field | Type | Description |
|---|---|---|
enabled | boolean | Enables or disables the retry cycle for this validation. If true |
max_retries | integer | Maximum number of automatic retries. Once reached, the cycle enters the 3 |
interval_seconds | integer | Seconds to wait between each retry (300–86400, i.e., 5 minutes to 24 hours). e.g.600 |
outcomes | array (items: 1–?, unique items) | Validation outcomes that trigger a retry. By default the cycle activates on ["not_found","cep_unavailable","error"] |
| Status | Class | Description | Body |
|---|---|---|---|
| 200 | 2xx | User's default retry policy. | No body |
| 401 | 4xx | Authentication is required or the provided credentials are invalid. | ErrorResponse |
| Status | Code | Example |
|---|---|---|
| 401 | unauthorized | Invalid or missing authentication credentials. Envelope
|