查询已购订单列表
GET /client/order/orderList
| 参数名 | 类型 | 描述 |
| x-merchant-token | String | 商户令牌 |
| x-merchant-code | String | 商户代码 |
| 参数名 | 必选 | 类型 | 描述 |
| orderNo | 否 | String | 订单号 |
| productType | 否 | Integer | 产品类型,2-静态IP |
{
"total": 1,
"rows": [
{
"createTime": "2025-10-22 17:02:52",
"remark": null,
"id": 157,
"merchantId": 1,
"orderNo": "IPF2025102217025244134",
"productName": "Static Regular",
"productType": 2,
"quantity": 1,
"totalAmount": 0.010,
"currency": "CNY",
"status": 0,
"paidStatus": 20,
"payMethod": "ALIPAY",
"orderItems": [
{
"password": "12345678",
"expireDatetime": "2025-11-21T17:02:53.000+08:00",
"port": "8080",
"countryCode": "nz",
"unsubscribeTime": "9999-12-31T00:00:00.000+08:00",
"ip": "203.97.15.28",
"effectiveDatetime": "2025-10-22T17:02:53.000+08:00",
"days": 30,
"location": "wellingtont",
"account": "ipfast@2025",
"status": "Y"
}
]
}
],
"code": 200,
"msg": "查询成功"
}
| 参数名 | 类型 | 描述 |
| orderNo | String | 订单号 |
| productName | String | 产品名称 |
| productType | Integer | 产品类型,2-静态IP |
| totalAmount | double | 总价格 |
| currency | String | 货币 |
| status | Integer | 订单状态,0-未生效,10-已生效,20-已过期 |
| paidStatus | Integer | 支付状态,0-已取消,10-未支付,20-已支付 |
| payMethod | String | 支付方式,BALANCE-余额支付,ALIPAY-支付宝 |
| createTime | String | 创建时间 |
| orderItems | List | 订单产品明细 |
| 参数名 | 类型 | 描述 |
| ip | String | IP |
| port | String | 端口 |
| account | String | 账号 |
| password | String | 密码 |
| countryCode | String | 国家代码(2位) |
| location | String | 地区 |
| status | String | 状态,P-待发货,Y-已发货,N-已过期,T-已退订 |
| effectiveDatetime | String | 生效时间 |
| expireDatetime | String | 过期时间 |
| unsubscribeTime | String | 退订时间(如没有退订则为9999-12-31或空) |