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
Authorization*
String
jwt token
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
Authorization*
String
jwt token
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
Authorization*
String
jwt token
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
Authorization*
String
jwt token
Request Body
old_password*
String
new_password*
String
confirm_password*
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
per_page*
String
page*
String
Headers
Authorization*
String
jwt token
Last updated