该接口支持批量查询商品特殊属性信息
参数名称 | 必填 | 类型 | 长度 | 示例值 |
token | 是 | String | 100 | 授权接口获取的access token |
skus | 是 | String | 500 | 商品编号,支持批量查询,以英文逗号","分隔 |
attributes | 是 | String | 100 | 多个参数用英文逗号","分隔;示例:"name,brand_name",注:此处的参数,来自于商品详情接口返回的商品参数 |
名称 | 类型 | 必填 | 备注 |
success | boolean | 是 | true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因 |
result | Array | 是 | 数组对象,数据节点 |
└model | String | 是 | 商品型号 |
└sku | String | 是 | 商品编号 |
└name | String | 是 | 商品名称 |
└brand_name | String | 是 | 品牌名称 |
错误码 | 错误描述 | 解决方案 |
ERR-000702 | SKU不能为空 |
{ "token":"cb0bd9f8-ae67-4365-b14d-566ee96886a8", "skus":"30060686", "attributes": "name,brand_name,model" }
{ "success": true, "result": [ { "name": "康佳 KH-LSG01 石英管反射型电暖器 白色", "brand_name": "康佳", "model": "KH-LSG01", "sku": "30060686" } ] }