Verify Client Version Number
2/26/26Less than 1 minute
Verify Client Version Number
Get server version and client version information for version compatibility verification.
Endpoint: GET /verify/verify_client_version_number
Request Parameters
None
Response Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | int | Yes | HTTP status code |
| code | string | Yes | Verification result code |
| result | string | Yes | Verification conclusion |
| data | dict | Yes | Version number data |
data Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| SERVER_VERSION | string | Yes | Server version |
| CLIENT_VERSION | string | Yes | Client version |
| ASAC_VERSION | string | Yes | ASAC core check unit version |
Success Response Example
{
"status": 200,
"code": "10000",
"result": "Client version number retrieved successfully",
"data": {
"SERVER_VERSION": "V0.0.0 beta-9aa09080",
"CLIENT_VERSION": "V0.0.4 beta",
"ASAC_VERSION": "V0.0.1 beta-38c0c3d0"
}
}Error Response Example
{
"status": 403,
"code": "10002",
"result": "Server has not opened this endpoint",
"data": {}
}Error Code Description
| Code | Description |
|---|---|
| 10000 | Client version number retrieved successfully |
| 10002 | Server has not opened this endpoint |
Tip
This endpoint is used to verify version compatibility between client and server. It is recommended to call this endpoint first when the client starts to ensure version matching before proceeding with subsequent operations.
Warning
Version incompatibility may cause some features to be unavailable or behave abnormally. Please ensure the client version matches the server version.