ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~[api] *string:appId#品牌ID *string:requestTime#发送请求时间,如:20190226153808 *string:agentId#代理id 业务所属代理 *businessType#业务类型 00 商户账单,01 代理账单 ,02 支付账单 *businessId#业务Id,非必填 业务传入什么,回调返回什么 *int:billStart#账单起始时间 时间戳 1599545183 代表 2020-09-08 14:06:23 *int:billEnd#账单终止时间 时间戳 1599545183 代表 2020-09-08 14:06:23 *result# 对比结果 *sign#签名 ~~~ **result 详情** 实例: 商户账单返回结果: json 数组 id :支付结算中心商户id,outid:外部商户id,agent:代理id,dayTime:回调日期 compare:对结果 true 账单一致,false 账单不一致 platform:平台数据 business:业务数据 ``` [{ "id": "55", "outid": "517", "agent": "703", "compare":true, "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } },{ "id": "56", "outid": "58", "agent": "703", "compare":true, "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } }] ``` 代理相关数据: ``` [{ "agent": "703", "compare":true, "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } },{ "agent": "704", "compare":true, "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } }] ``` 支付方式相关数据: ``` [{ "agent": "703", "type" : "H5_zz", "compare":true, "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } },{ "agent": "704", "compare":true, "type" : "H5_tb", "dayTime": "2020-09-10", "platform": { //支付相关 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" }, "business": { // 退款 "amount": "1.48", "settleAmount": "1.00", "billCount": "13" , "refundAmount:"1.48", "refundBillCount":"13" } }] ```