Skip to main content
POST
/
api
/
v2
/
auth
/
verify-otp
Verify a otp
curl --request POST \
  --url https://sandbox.killb.app/api/v2/auth/verify-otp \
  --header 'Content-Type: application/json' \
  --data '
{
  "otp": "<string>",
  "email": "<string>"
}
'
{
  "errorCode": "API_USER.0001",
  "arguments": [
    {
      "key": "email",
      "value": "[email protected]"
    }
  ],
  "message": [
    "User not found",
    "Account not found"
  ],
  "statusCode": "400"
}

Body

application/json
otp
string
required

The otp to verify

email
string
required

Email

Response

errorCode
string
required
Example:

"API_USER.0001"

arguments
object[]
required
message
string[]
required
Example:
["User not found", "Account not found"]
statusCode
string
required
Example:

"400"