文档
测试

查询单个订单

POST
/order/query

请求头

参数名
类型
描述
必填
apitoken
string
登录返回的token
必填

请求body

application/json
参数名
类型
描述
必填
orderSn
string
下单时返回的订单编号
可选

说明 / 示例

### 计算任务进度方法: - ==**(nowCount / (expectCount+initCount))x100%**== 字段说明: ```json orderSn 订单编号 totalPrice 应付金额 refundPrice 实付金额 expectCount 期望量 initCount 初始量 nowCount 当前量 orderParam 下单参数(抖音号或视频地址) startTime 开始时间 endTime 结束时间 status 订单状态 ``` 订单状态: ```json 排队中,进行中,已结束,已撤销,退款中,已退款,设备失效,设备不足 ``` ```json { "status": 200, "msg": "SUCCESS", "data": { "orderSn": "22052302000001", "uid": 1, "orderParam": "https://v.douyin.com/FqwqB5P", "dyUid": null, "videoId": null, "expectCount": 10, "initCount": 6, "nowCount": 14, "totalPrice": 0.8, "refundPrice": 0.8, "model": "快单", "type": "点赞", "startTime": "2022-05-23 15:46:38", "endTime": "2022-05-23 16:24:00", "description": "自动退款", "status": "已退款" }, "success": true } ```