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 User Data
  • User Details
  • User Notifications
  • User Notifications
  • Get Recent User Login Data
  • Get Recent Login User Data
  • Change Password
  • Change Password API
  • User Logs
  • User Logs Api
  1. API Reference
  2. Private APIs
  3. Profile

Others

It refer to those APIs in which we have user data , user notification or change password etc.

Get User Data

User Details

GET {{BASE_NODE_URL}}/user/get

Here we get user all details and show them.

Headers

Name
Type
Description

Authorization*

String

jwt token

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

User Notifications

User Notifications

GET {{BASE_URL}}/api/notification/get

User notifications refer to messages or alerts sent to individuals or users of a system, application, website, or platform to inform them about important events, updates, or actions that require their attention.

Headers

Name
Type
Description

Authorization*

String

jwt token

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

Get Recent User Login Data

Get Recent Login User Data

GET {{BASE_URL}}/backend/public/api/log/getRecentLogin

This data is that user data which is now active.

Headers

Name
Type
Description

Authorization*

String

jwt token

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

Change Password

Change Password API

POST {{BASE_URL}}/api/user/change_password

If user wants to change passwo user use this API and change the password.

Headers

Name
Type
Description

Authorization*

String

jwt token

Request Body

Name
Type
Description

old_password*

String

new_password*

String

confirm_password*

String

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

User Logs

User Logs Api

GET {{BASE_URL}}/api/log/get?per_page=5&page=1

In this API we have all user activity.

Query Parameters

Name
Type
Description

per_page*

String

page*

String

Headers

Name
Type
Description

Authorization*

String

jwt token

{
    "status_code": "Integer", // 0
    "status_text": "String", // Failed
    "message": "String",
    "data":"Object"
}

PreviousUser KYCNextProfile Information

Last updated 6 months ago