- 服务商调用分账接口后不进行解冻,资金多久后会自动解冻?
[图片] 如果调用分账时不解冻剩余资金,剩余资金多久后会自动解冻到商户余额里
2021-07-27 - 服务商分账 -发起分账API 提示无无分账权限 V3版本 如何解决?
请求接口 https://api.mch.weixin.qq.com/v3/profitsharing/orders 请求参数 { "appid": "wxdb243c22**8911f1a", "out_order_no": "sharding1", "receivers": [ { "account": "155**60801", "amount": 1, "description": "测试", "type": "MERCHANT_ID" } ], "sp_mchid": "16023**114", "transaction_id": "420000118920**07231287653497", "unfreeze_unsplit": false } 返回参数 {"code":"NO_AUTH","message":"无分账权限"} 微信已开通服务商分账 [图片] 需要分账的订单也传入了profit_sharing 参数
2021-07-26 - V3支付的统一下单接口添加分账参数 profit_sharing 提示报错?JSAPI下单
调用的 JSAPI下单接口 https://api.mch.weixin.qq.com/v3/pay/partner/transactions/jsapi 参数如下传递,为了隐私,数据部分隐藏了 { "amount": { "total": 1 }, "attach": "***", "description": "测试", "notify_url": "***", "out_trade_no": "***", "payer": { "sub_openid": "***" }, "profit_sharing": "Y", "sp_appid": "***", "sp_mchid": "***", "sub_appid": "***", "sub_mchid": "***" } 原先是没有问题的。但是我需要对这个订单进行分账 增加了一个profit_sharding 参数 就报错了 返回内容如下 { "code": "PARAM_ERROR", "detail": { "location": null, "value": [ "/body/profit_sharing" ] }, "message": "请求中含有未在API文档中定义的参数" } 按照此页面页尾描述 增加的字段 https://pay.weixin.qq.com/wiki/doc/apiv3_partner/open/pay/chapter4_1_3.shtml
2021-07-23