← Back to schema index

RetryAttempt

Record of an individual automatic retry attempt. Returned in the `attempts` array from `GET /v1/validations/{id}/retry-attempts`.

Properties

Field Type Description
attempt_number integer Sequence number of the attempt (1-based).
dispatched_at string (date-time) ISO 8601 timestamp in UTC with explicit `Z` suffix. Example: `"2026-05-01T05:14:38Z"`. Every datetime field uses this shape. The descriptor at `meta.datetime` makes the contract runtime-assertable.
started_at string (date-time) ISO 8601 timestamp in UTC with explicit `Z` suffix. Example: `"2026-05-01T05:14:38Z"`. Every datetime field uses this shape. The descriptor at `meta.datetime` makes the contract runtime-assertable.
finished_at string (date-time) ISO 8601 timestamp in UTC with explicit `Z` suffix. Example: `"2026-05-01T05:14:38Z"`. Every datetime field uses this shape. The descriptor at `meta.datetime` makes the contract runtime-assertable.
prev_banxico_status string Banxico status of the validation immediately before this attempt (e.g. `not_found`).
new_banxico_status string | null Banxico status after the attempt completed. `null` if the attempt did not receive a Banxico response (e.g. network failure).
prev_status string Validation status before the attempt.
new_status string | null Validation status after the attempt. `null` if the attempt did not produce a state transition.
processing_time_ms integer | null Processing time for the attempt in milliseconds. `null` if the attempt did not complete.
error_code string | null Error code if the attempt ended in failure. See `ValidationErrorCode` for possible values. `null` if the attempt completed without error.
proxy_pool_member string | null Identifier of the proxy used for this attempt. Useful for diagnosing repeated failures on the same node.

Used in operations

  • GET /v1/validations/{id}/retry-attempts