Tradebit API V3.0
  • Introduction
  • Quick Start
  • API Reference
    • Public APIs
      • Auth
      • Crypto
      • Others
    • Private APIs
      • Common
      • Others
      • Orders
      • Support Ticket
      • Wallet
        • Withdraw
        • Fiat And Spot
        • Staking
        • Others
      • Send Token
      • Referrals
      • Profile
        • Security Verification
        • User KYC
        • Others
      • Profile Information
    • Errors Codes
Powered by GitBook
On this page
  • Get Google Auth
  • Get Google Auth
  • Get Security Setup
  • Security Setup Data
  • Get Verification 2FA List
  • Get Verification 2FA List
  • Send Mobile Verification Code
  • Send Mobile Verification Code
  • Send Email Verification Code
  • Send Email Verification Code
  • Bind Mobile
  • Bind Mobile
  • Unbind Mobile
  • Unbind Mobile API
  • Unbind Email
  • Unbind Email API
  • Bind Google 2FA
  • Bind Google 2FA API
  • Unbind Google 2FA
  • Unbind Google 2FA API
  • Change Mobile
  • Change Mobile API
  1. API Reference
  2. Private APIs
  3. Profile

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

Name
Type
Description

Authorization*

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Object"
}

Get Security Setup

Security Setup Data

GET {{BASE_URL}}/api/securitySetup/get

Here we get user security data.

Headers

Name
Type
Description

Authorization*

String

jwt token

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Array"
}

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

Name
Type
Description

Authorization*

String

jwt token

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String",
    "data":"Array"
}

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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

country_calling_code*

String

country_code*

String

mobile*

String

type*

String

bindmobile

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "String"
}

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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

type*

String

bindemail

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "String"
}

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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

country_calling_code*

String

country_code*

String

email_vcode*

String

google_vcode

String

mobile*

String

mobile_vcode*

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

email_vcode

String

google_vcode

String

mobile_vcode*

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

email_vcode*

String

google_vcode

String

mobile_vcode

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

secret

String

totp

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

email_vcode

String

google_vcode*

String

mobile_vcode

String

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "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

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

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

{
    "status_code": "Integer", // 1
    "status_text": "String", // Success
    "message": "String"
}
{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "String"
}

PreviousProfileNextUser KYC

Last updated 6 months ago