POST
/
auth
/
v1
/
verify
/
otp
curl --request POST \
  --url https://auth.otpless.app/auth/v1/verify/otp \
  --header 'Content-Type: application/json' \
  --header 'clientId: <api-key>' \
  --header 'clientSecret: <api-key>' \
  --data '{
  "requestId": "unique_request_id",
  "otp": "OTP"
}'
{
  "requestId": "unique_request_id",
  "isOTPVerified": true,
  "message": "OTP verified successfully"
}

Authorizations

clientId
string
header
required
clientSecret
string
header
required

Body

application/json

Response

200
application/json
OTP verified successfully

The response is of type object.