πŸ“žCheck Phone Info

1. Send OTP

get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200
Success
get
GET /api/v1/authentication/PhoneOtpAuthentication/SendPhoneOtp HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "status": 0
}

2. Validate OTP

post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Body
otpstring | nullableOptional
Responses
200
Success
post
POST /api/v1/authentication/PhoneOtpAuthentication/VerifyPhoneOtp HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 14

{
  "otp": "text"
}
{
  "status": 0
}

Last updated