查询续费订单
GET
/orders/{order_id}/service适用场景
- 发起在线续费下单后,查询订单的状态变更等信息。
必要条件
- 仅支持对所用API key归属企业下的Order进行操作。
- order_id必须为通过接口在线续费下单后接口响应中的order_id。
SDK API 调用方式
SDK支持版本:1.0.8及以上
PartnerClient client = new PartnerClient(accessKey,privateKey)
client.v2().order().queryRenewOrder(new QueryRenewOrder(2, "OL-7A4TO8DAEEZ1"));
请求参数
Path 参数
order_id
string
订单ID
示例值:
OL-6XB9J1KCTI4
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
No schema defined
示例
{
"data": {
"id": "OL-7A4TJYGVM50S",
"type": 2,
"status": 1,
"items": [
{
"id": "CP-7A4TGC8U6ID5",
"quantity": 2,
"price": 100,
"sim_ids": [
"89248044404413065327"
]
}
],
"accounting": {
"currency": "CNY",
"pay_channel": 1,
"total_amount": 200
},
"extra": {
"po": "1235215555",
"remarks": "续费本地测试"
},
"created_at": "1698802504000",
"abnormal": []
},
"status": {
"code": "CB-00-0000",
"message": "成功",
"detail": "https://apidoc-cn.iotcube.link/"
}
}
最后修改时间: 1 年前