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"
}

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"
}

Last updated