根据商品品目ID查询当前商品品目阶梯优惠率
参数名称 | 必填 | 类型 | 长度 | 示例值 |
token | 是 | String | 100 | 授权接口获取的access token |
catalog_id | 是 | String | 500 | 商品品目ID,可多品目查询,使用英文逗号分隔 |
名称 | 类型 | 必填 | 备注 |
success | boolean | 是 | true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因 |
result | Array | 是 | 数组对象,数据节点 |
└catelog_id | String | 是 | 品目代码 |
└rate | number | 是 | 该品目当前优惠率,无优惠为1 |
└total | number | 否 | 该品目累计销售金额,单位:元 |
错误码 | 错误描述 | 解决方案 |
ERR-001100 | 商品分类不能为空 |
{ "token": "cb0bd9f8-ae67-4365-b14d-566ee96886a8", "catalog_id":"2222,1111" }
{ "success": true, "result": [{ "catalog_id": "1111", "rate": 0.95, "total": 2345.5 }, { "catalog_id": "2222", "rate": 1, "total": null }] }