# 获取推客的某个商品的推广分佣比例
# 接口说明
通过该接口,可获取到推客的某个商品的推广分佣比例
# 接口调用请求说明
POST https://api.weixin.qq.com/channels/ec/promoter/get_sharer_product_commission_info?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 是否必填 | 描述 |
---|---|---|---|
sharer_appid | string | 是 | 推客在微信电商平台注册的身份标识 |
product_id | number | 是 | 要设置的商品 id |
# 请求参数示例
{
"sharer_appid": "",
"product_id":1
}
# 返回参数说明
参数 | 类型 | 描述 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
commission_ratio | string | 分佣比例,范围为【100000 - 900000】,代表【10%-90%】 |
is_set | bool | 是否设置了这个商品的佣金率 |
# 返回参数示例
{
"errcode": "0",
"errmsg": "ok",
"is_set": true,
"commission_ratio": 10
}
# 错误码
错误码 | 错误描述 |
---|---|
公共错误码 | - |
10024000 | 参数错误 |