# 删除分账方
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/shop/commission/removereceiver?access_token=xxxxxxxxx
# 请求参数示例
{
"account_type":0,
"mchid":"1234567"
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok"
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
account_type | number | 否 | 账户类型,0:商户,默认值为0 |
mchid | string | 是 | 商户号 |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
48001 | 无权限调用该api |
1012004 | 分账方不存在 |