POST
/
otp
/
verify
curl --request POST \
  --url https://api.contiguity.co/otp/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "otp_id": "abc123xyz",
  "otp": "123456"
}'
{
  "message": "OTP Verified",
  "verified": 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

Example:

"abc123xyz"

otp
required

OTP to verify

Example:

"123456"

Response

200
application/json
OTP verification result
message
string
Example:

"OTP Verified"

verified
boolean
Example:

true

Was this page helpful?