Skip to main content

Order status query

  1. Interface description
  • You can use API to check the status of the orders you have ordered on the platform.
  1. Interface invocation
  • URL:/linklan_api/esim/v1/queryOrderStatus
  • Request method:post
  1. Request parameters
NameTypeRequiredDescription
lklOrderCodeinttrueproduct number
{
"data": {
"lklOrderCode": "lkl_1780284354"
}
}
  1. Response parameters
NameTypeDescription
qrStatusintOrder status (0- Not enabled; 1- In use; 2- Suspended; 3- Finished)
actualStartTimestringActual start time
plannedEndTimestringScheduled end time

Json 示例

{
"code": 200,
"msg": "success",
"data": {
"qrStatus": 0,
"actualStartTime": null,
"plannedEndTime": "2026-05-09 15:15:59"
}
}