💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~[api] post:api/bill/upload *string:appId#品牌ID *string:requestTime#发送请求时间,如:20190226153808 *string:agentId#代理id 业务所属代理 *businessType#业务类型 00 商户账单,01 代理账单 ,02 支付账单 businessId#业务id 商户id,支付类别,或者代理id 非必填,不填默认所属代理所有商户或者支付方式 *int:billStart#账单起始时间 时间戳 1599545183 代表 2020-09-08 14:06:23 *int:billEnd#账单终止时间 时间戳 1599545183 代表 2020-09-08 14:06:23 *detail#账单内容详情 *callbackUrl#回调通知地址 *is_market#是否是营销系统1是0否 *sign#签名 <<< success {"status":"0000","codemsg":"对比成功","data":data} <<< error {"status":errorcode,"codemsg":errormsg} ~~~ **detail详情** 实例: 商户(json 数组):id :支付结算中心商户id,outid:外部商户id,agent:代理id,dayTime:日期 pay:支付统计 ,amount 支付金额,settleAmount 结算金额,billCount :交易笔数 refund :amount 退款金额,settleAmount 结算金额,billCount :交易笔数 ``` [{ "id": "55", "outid": "517", "agent": "703", "dayTime": "2020-09-10", "settleAmount": "1.00", //结算金额 "pay": { //支付相关 "amount": "1.48", //支付金额 "billCount": "13" // 交易笔数 }, "refund": { // 退款 "amount": "1.48", "billCount": "13" } },{ "id": "67", "outid": "518", "dayTime": "2020-09-10", "agent": "703", "settleAmount": "1.00", "pay": { "amount": "1.48", "billCount": "13" }, "refund": { "amount": "1.48" "billCount": "13" } }] ``` 代理相关数据: ``` [{ "agent": "703", "dayTime": "2020-09-10", "settleAmount": "1.00", "pay": { "amount": "1.48", "billCount": "13" }, "refund": { "amount": "1.48", "billCount": "13" } },{ "agent": "704", "dayTime": "2020-09-10", "settleAmount": "1.00", "pay": { "amount": "1.48", "billCount": "13" }, "refund": { "amount": "1.48", "billCount": "13" } }] ``` 支付方式相关数据: ``` [{ "agent": "703", "dayTime": "2020-09-10", "type": "H5_zz", "settleAmount": "1.00", "pay": { "amount": "1.48", "billCount": "13" }, "refund": { "amount": "1.48", "billCount": "13" } }, { "agent": "703", "dayTime": "2020-09-10", "type": "H5_tb", "settleAmount": "1.00", "pay": { "amount": "1.48", "billCount": "13" }, "refund": { "amount": "1.48", "billCount": "13" } } ] ```