Order status query
- Interface description
- You can use API to check the status of the orders you have ordered on the platform.
- Interface invocation
- URL:/linklan_api/esim/v1/queryOrderStatus
- Request method:post
- Request parameters
| Name | Type | Required | Description |
|---|---|---|---|
| lklOrderCode | int | true | product number |
{
"data": {
"lklOrderCode": "lkl_1780284354"
}
}
- Response parameters
| Name | Type | Description |
|---|---|---|
| qrStatus | int | Order status (0- Not enabled; 1- In use; 2- Suspended; 3- Finished) |
| actualStartTime | string | Actual start time |
| plannedEndTime | string | Scheduled end time |
Json 示例
{
"code": 200,
"msg": "success",
"data": {
"qrStatus": 0,
"actualStartTime": null,
"plannedEndTime": "2026-05-09 15:15:59"
}
}