# 团长商品添加和管理
# 接口说明
可通过该接口操作商家提交的商品
# 接口调用请求说明
POST https://api.weixin.qq.com/channels/ec/league/headsupplier/item/upd?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 是否必填 | 描述 |
---|---|---|---|
appid | string | 是 | 团长商品 所属小店appid |
product_id | string(uint64) | 是 | 商品id |
type | number | 是 | 操作类型, 1: 添加商品,3: 隐藏商品,4: 取消隐藏 |
# 请求参数示例
{
"product_id": 12345,
"appid": "test",
"type": 1
}
# 返回参数说明
参数 | 类型 | 描述 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
# 返回参数示例
{
"errcode": 0,
"errmsg": "ok"
}
# 错误码
错误码 | 错误描述 |
---|---|
公共错误码 | - |
10024000 | 参数错误 |
10024003 | 不合法的appid |
10024004 | 不存在该商品 |
10024015 | 该商品不在审核中 |