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

Response

200
application/json

OTP verification result

The response is of type object.