Security Verification
Security verification refers to the process of confirming or verifying the identity of an individual or entity to ensure that they have the necessary permissions or access rights to use a particular system, service, or resource securely.
Get Google Auth
Get Google Auth
GET
{{BASE_URL}}/api/securityOption/getGoogleAuth
It typically refers to data associated with Google's two-factor authentication (2FA) system, commonly known as Google Authenticator or Google 2-Step Verification.
Headers
Authorization*
String
Get Security Setup
Security Setup Data
GET
{{BASE_URL}}/api/securitySetup/get
Here we get user security data.
Headers
Authorization*
String
jwt token
Get Verification 2FA List
Get Verification 2FA List
GET
{{BASE_URL}}/api/account/getVerification2FAList
It is a request to obtain a list of 2FA (Two-Factor Authentication) methods or options available for a specific account
Headers
Authorization*
String
jwt token
Send Mobile Verification Code
Send Mobile Verification Code
POST
{{BASE_URL}}/api/account/sendMobileVCode
With this API we send a verification code on mobile.
Headers
Authorization*
String
jwt token
Request Body
country_calling_code*
String
country_code*
String
mobile*
String
type*
String
bindmobile
Send Email Verification Code
Send Email Verification Code
POST
{{BASE_URL}}/api/account/sendEmailVCode
With this API we send a verification code on email.
Headers
Authorization*
String
jwt token
Request Body
type*
String
bindemail
Bind Mobile
Bind Mobile
POST
{{BASE_URL}}/api/securityOption/bindMobile
After verification code is confirm then with the help of this API user mobile number is connected to his account.
Headers
Authorization*
String
jwt token
Request Body
country_calling_code*
String
country_code*
String
email_vcode*
String
google_vcode
String
mobile*
String
mobile_vcode*
String
Unbind Mobile
Unbind Mobile API
POST
{{BASE_URL}}/api/securityOption/unbindMobile
With the help of this API user can remove his mobile number from his account.
Headers
Authorization*
String
jwt token
Request Body
email_vcode
String
google_vcode
String
mobile_vcode*
String
Unbind Email
Unbind Email API
POST
{{tblocal}}/api/securityOption/unbindEmail
With the help of this API user can remove his email from his account.
Headers
Authorization*
String
jwt token
Request Body
email_vcode*
String
google_vcode
String
mobile_vcode
String
Bind Google 2FA
Bind Google 2FA API
POST
{{BASE_URL}}/api/securityOption/bindGoogleAuth
With the help of this API user can activate google authentication for security.
Headers
Authorization*
String
jwt token
Request Body
secret
String
totp
String
Unbind Google 2FA
Unbind Google 2FA API
POST
{{BASE_URL}}/api/securityOption/unbindGoogleAuth
With the help of this API user can deactivate google authentication.
Headers
Authorization*
String
jwt token
Request Body
email_vcode
String
google_vcode*
String
mobile_vcode
String
Change Mobile
Change Mobile API
POST
{{BASE_URL}}/api/securityOption/changeMobile
With the help of this API user can change his account mobile number.
Headers
Authorization*
String
jwt token
Request Body
email_vcode
String
google_vcode
String
mobile_vcode*
String
new_country_calling_code*
String
new_country_code*
String
new_mobile*
String
new_mobile_vcode*
String
Last updated