4.5 查询订单详情
简要描述:
- 查看订单详情信息
请求头参数:
Authorization: Bearer [accessToken]
请求URL:
- /orders/batch/get/{id}
请求方式:
- GET
参数:
请求参数说明
参数 | 类型 | 说明 |
---|---|---|
id | string | 平台订单唯一id |
请求路径示例
/orders/batch/get/362201688838242123
响应参数说明
参数 | 类型 | 说明 |
---|---|---|
id | string | 平台订单唯一id |
batchNo | string | 批次号,订单唯一标示 |
totalFee | string | 总服务费 |
baseFee | string | 基础服务费 |
bizFee | string | 业务经营费用(个人到手) |
bizBeforeFee | string | 经营服务费税前,税前金额 |
payTotalFee | string | 实际支付的总服务费 |
payBaseFee | string | 实际支付的基础服务费 |
payBizBeforeFee | string | 实际支付的经营服务费税前 |
payFee | string | 实际支付金额 |
status | int | 交易状态,0:上传中 1:待审核 2:未通过 3:待付款 4:待收款 5:待支付 6:已支付 7:已取消 8:支付中 99:作废 |
created | string | 下单时间 |
totalLine | string | 明细总行数 |
totalFail | string | 失败总条数 |
totalSuccess | string | 成功总条数 |
remarks | string | 备注信息 |
warn | string | 警告信息 |
providerAccount | string | 当前绑定的服务商账户 |
paymentType | int | 个人收款方式:1银行卡;2支付宝 |
payTime | string | 支付时间 |
返回结果示例
成功示例
{
"id": "363301063360000000",
"batchNo": "895210000000",
"totalFee": "0.00",
"baseFee": "0.00",
"bizFee": "0.00",
"bizBeforeFee": "0.00",
"payTotalFee": "0.00",
"payBaseFee": "0.00",
"payBizBeforeFee": "0.00",
"payFee": "0.00",
"created": "20191018121446",
"totalLine": "2",
"totalFail": "0",
"totalSuccess": "2",
"remarks": "",
"warn": "",
"providerAccount": "1001281219006700000",
"payTime": "20191018122020",
"status": 6
}