Get User Info Modification Log
3/3/26About 1 min
Get User Info Modification Log
Get the modification history of the current user's basic information.
Before querying, the user needs to re-enter the login password for security verification.
Endpoint: POST /user/info/get_user_info_modification_log
Request Headers
| Parameter | Required | Description |
|---|---|---|
| Content-Type | Yes | Fixed value: application/json |
| Authorization | Yes | Bearer token, user authentication token |
Request Parameters
Body (JSON)
| Parameter | Type | Required | Description |
|---|---|---|---|
| user_password | string | Yes | User login password (plain text, will be verified on the server side) |
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| code | string | Yes | Result code |
| result | string | Yes | Result description |
| data | dict | Yes | Result data |
data Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| modification_logs | list | Yes | User info modification record list |
modification_logs List Item Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | User ID number |
| data_type | string | Yes | Type of modified data (such as nickname, phone_number, email, etc.) |
| data_before_modification | string | Yes | Data before modification |
| data_after_modification | string | Yes | Data after modification |
| modification_time | string | Yes | Modification time (ISO 8601 format, sorted from newest to oldest) |
Success Response Example
{
"status": 200,
"code": "10000",
"result": "Get user info modification log successfully",
"data": {
"modification_logs": [
{
"user_id": "110***********1234",
"data_type": "phone_number",
"data_before_modification": "13800000000",
"data_after_modification": "13800000001",
"modification_time": "2026-02-23T10:00:00"
}
]
}
}Error Response Examples
Endpoint Not Open
{
"status": 403,
"code": "10002",
"result": "Server has not opened this endpoint",
"data": {}
}Token Expired or Invalid
{
"status": 401,
"code": "10001",
"result": "Token expired or invalid",
"data": {}
}Password Incorrect
{
"status": 401,
"code": "10004",
"result": "Password is incorrect",
"data": {}
}Failed to Get User Info Modification Log, Server Internal Error
{
"status": 500,
"code": "10006",
"result": "Failed to get user info modification log, server internal error",
"data": {}
}Error Code Description
| Code | Description |
|---|---|
| 10000 | Get user info modification log successfully |
| 10001 | Token expired or invalid |
| 10002 | Server has not opened this endpoint |
| 10004 | Password is incorrect |
| 10006 | Failed to get user info modification log, server internal error |
Tip
This endpoint requires the user to be logged in and re-enter the password to access the modification log.
Please keep your password safe and do not share it with others.
← Back to API Documentation | ← Get User Information | ← Get User Check Information