POST
/
otp
/
resend
curl --request POST \
  --url https://api.contiguity.co/otp/resend \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "otp_id": "abc123xyz"
}'
{
  "message": "OTP resent successfully.",
  "resent": true
}

Authorizations

Authorization
string
header
required

Authentication using a Bearer Token. Specify Authorization: Token YOUR_TOKEN. Bearer is allowed.

Body

application/json
otp_id
string
required

ID of the OTP to be resent

Example:

"abc123xyz"

Response

200
application/json
OTP resent successfully
message
string
Example:

"OTP resent successfully."

resent
boolean
Example:

true