# 获取分账方列表
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/shop/commission/setordercommission?access_token=xxxxxxxxx
# 请求参数示例
{
}
# 回包示例
{
"errcode": 0,
"commission_receiver_list": [
{
"account_type":0,
"mchid":"1234567",
"name":"xxxx有限公司",
"commission_type":1
}
]
}
# 请求参数说明
无,传{}
# 回包参数说明
| 参数 | 类型 | 说明 |
|---|---|---|
| errcode | number | 错误码 |
| commission_receiver_list | CommissionRecord | 分账列表 |
# CommissionRecord
| 参数 | 类型 | 说明 |
|---|---|---|
| account_type | enum | 账户类型,0:商户 |
| commission_type | enum | 分账类型,1:第三方服务商 |
| mchid | string | 商户号 |
| name | string | 分账方名称,亦即微信支付商户号的商户全称,需要与调用本接口时使用的第三方服务商主体一致 |
# 返回码
无特别返回码