v34

latestOpenAPI 3.1.0raw.githubusercontent.com2025-05-1961327.8 KB
OTP

Perform a retry

Perform a retry if a user has not received the code.

post/retry

Request body

customer_uuidstring uuid required

Your customer UUID, which can be found in the API settings in the dashboard.

authentication_uuidstring uuid required

The authentication UUID that was returned when you created the authentication.

Response

OK

authentication_uuidstring uuid

The UUID of the corresponding authentication.

status'approved' | 'denied' | 'no_attempt' | 'rate_limited' | 'expired_auth' | 'already_validated'

The status of the retry. Possible values are:

  • approved - The retry was approved and a new code was sent.
  • denied - The retry was denied.
  • no_attempt - No attempt was sent yet, so a retry cannot be completed.
  • rate_limited - The authentication was rate limited and cannot be retried.
  • expired_auth - The authentication has expired and cannot be retried.
  • already_validated - The authentication has already been validated.
created_atstring date-time
next_retry_atstring date-time

The time at which the next retry will be available.

remaining_retryinteger

The number of remaining retries.

Example response

{
  "status": "approved",
  "remaining_retry": 3
}