API接口文档/2.8 支付凭证服务/2.8.1 对账服务
在线测试
2.8.1 对账服务

该接口支持查询一段时间内某一个客户的账单信息

请求方式/参数格式
POST/JSON
请求URL
https://域名/checkr
请求入参说明
参数名称 必填 类型 长度 示例值
token String 100 授权接口获取的access token
bdate String 50 开始日期,格式:2019-12-12(包含该天)
edate String 50 结束日期,格式:2020-1-12(包含该天)
返回结果
名称 类型 必填 备注
success boolean true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因
result Object 数据对象,数据节点
 └num int 订单数量
 └orders Object 数据对象,数据节点
   └└order_id String 订单编号
   └└state int 状态:0 是新建;1是妥投完成;-1是拒收;4是退换货中
   └└total_price number 订单金额
   └└invoice_state int 开发票状态:0 为未开;1 为已开
错误码
错误码 错误描述 解决方案
ERR-000900 日期格式错误
ERR-000901 开始日期不能为空
ERR-000902 结束日期不能为空
ERR-000903 开始日期不能大于结束日期
请求示例
{
  "token": "3fd5f04b-9f4c-4be0-8ea2-31f912314181",
  "bdate": "2019-12-22",
  "edate": "2020-01-12"
}
			
返回示例
{
  "result": {
    "num": 2,
    "orders": [
      {
        "total_price": 1228.54,
        "invoice_state": 0,
        "state": 4,
        "order_id": "LINK20190807220000002"
      },
      {
        "total_price": 339.6,
        "invoice_state": 0,
        "state": 4,
        "order_id": "LINK20190808340000001"
      }
    ]
  },
  "success": true
}