Get User Check Information
2/26/26About 1 min
Get User Check Information
Get ASAC core check history of the currently logged-in user.
Endpoint: GET /user/info/get_user_check_info
Request Headers
| Parameter | Required | Description |
|---|---|---|
| Content-Type | Yes | Fixed value: application/json |
| Authorization | Yes | Bearer token, user authentication token |
Request Parameters
None
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| code | string | Yes | Query result code |
| result | string | Yes | Query result |
| data | dict | Yes | Query result data |
data Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| check_logs | list | Yes | Check record list |
check_logs List Item Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| launch_code | string | Yes | Launch code |
| machine_code | string | Yes | Machine code |
| user_id | string | Yes | User ID number |
| check_result | string | Yes | Check result |
| check_result_detail | string | Yes | Check result details |
| start_time | string | Yes | Check start time (ISO 8601 format) |
| finish_time | string | Yes | Check end time (ISO 8601 format) |
Success Response Example
{
"status": 200,
"code": "10000",
"result": "User historical check information retrieved successfully",
"data": {
"check_logs": [
{
"launch_code": "LAUNCH202602230001",
"machine_code": "abcd1234efgh5678ijkl9012mnop3456",
"user_id": "110***********1234",
"check_result": "Passed",
"check_result_detail": "System environment check passed",
"start_time": "2026-02-23T10:00:00",
"finish_time": "2026-02-23T10:05: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": {}
}Failed to Get Historical Check Information, Server Internal Error
{
"status": 500,
"code": "10004",
"result": "Failed to get historical check information, server internal error",
"data": {}
}Error Code Description
| Code | Description |
|---|---|
| 10000 | User historical check information retrieved successfully |
| 10001 | Token expired or invalid |
| 10002 | Server has not opened this endpoint |
| 10004 | Failed to get historical check information, server internal error |
Tip
This endpoint requires the user to be logged in to access. A valid Authorization token must be carried in the request header.
← Back to API Documentation | ← Get User Information | ← Modify User Phone Number