πCheck Phone Info
1. Send OTP
get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer
Responses
200
Success
400
Bad Request
get
/api/v1/authentication/PhoneOtpAuthentication/SendPhoneOtpGET /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
400
Bad Request
post
/api/v1/authentication/PhoneOtpAuthentication/VerifyPhoneOtpPOST /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