Appearance
4.3.1 获取商品详情接口
接口说明:
Method | URL | ContentType |
---|---|---|
GET | /api/v1/product/{sku}/detail | application/json |
URL参数说明:
参数 | 类型说明 | 是否必须 | 长度 | 描述 |
---|---|---|---|---|
sku | string | 必须 | 50 | 商品编号 |
返回结果说明:
参数 | 类型说明 | 描述 |
---|---|---|
sku | string | 商品编号 |
name | string | 商品名称 |
mainImage | string | 商品主图 |
carouselImages | string数组 | 商品轮播图 |
saleUnit | string | 销售单位 |
categoryCode | string | 分类编码 |
categoryName | string | 类别名称 |
brandName | string | 品牌名称 |
stock | int | 库存 |
price | decimal | 协议价 |
mallPrice | decimal | 商城价 |
marketPrice | decimal | 市场价 |
minimumQuantity | int | 最小购买数量 |
spec | string | 规格 |
model | string | 型号 |
attributes | JSON数组 | 商品属性 |
-- attrCode | string | 属性编码 |
-- attrName | string | 属性名称 |
-- attrValue | string | 属性值 |
-- attrSeq | string | 属性排序值 |
-- attrGroupCode | string | 属性分组编码 |
-- attrGroupName | string | 属性分组名称 |
introduction | string | 商品描述(图文, html) |
extensions | JSON数组 | 扩展信息 |
请求参数示例:
/api/v1/product/1049204/detail
返回数据示例:
json
{
"success": true,
"code": "000",
"message": "成功",
"data": {
"sku": "4593174",
"name": "得力 deli 脚踏耐用圆纸篓 959 5.5L (灰色)",
"mainImage": "https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/4593174.jpg",
"carouselImages": [
"https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/4593174.jpg",
"https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/1_4593174.jpg",
"https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/2_4593174.jpg",
"https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/3_4593174.jpg",
"https://res-sh.clpcdn.com/pmspic/ItemPicture/20008/20069/20494/7537861/1649679255584/Original/4_4593174.jpg"
],
"saleUnit": "个",
"categoryCode": "20170",
"categoryName": "档案盒",
"categoryCodes": [],
"brandName": "得力",
"state": 1,
"stock": 9999,
"price": 40.53,
"mallPrice": 70.00,
"marketPrice": 84.00,
"minimumQuantity": null,
"spec": "5.5L",
"model": "959",
"introduction": "<p class=\"detailsNewDiv-Title\"><img src=\"https://res-sh.clpcdn.com/Introduction/introduction.jpg\" /></p><div class=\"dndc2-info\"><ul></ul></div><div class=\"dndc-show\"><img src=\"https://res-sh.clpcdn.com/ProductDescribe/ProductDesc_Middle/4593174/1649681832125/4593174_01.jpg\" width=\"790\" /></div><div class=\"dndc-show\"><img src=\"https://res-sh.clpcdn.com/ProductDescribe/ProductDesc_Middle/4593174/1649681832125/4593174_02.jpg\" width=\"790\" /></div><div class=\"dndc-show\"><img src=\"https://res-sh.clpcdn.com/ProductDescribe/ProductDesc_Middle/4593174/1649681832125/4593174_03.jpg\" width=\"790\" /></div><div class=\"dndc-show\"><img src=\"https://res-sh.clpcdn.com/ProductDescribe/ProductDesc_Middle/4593174/1649681832125/4593174_04.jpg\" width=\"790\" /></div><div class=\"dndc-show\"><img src=\"https://res-sh.clpcdn.com/ProductDescribe/ProductDesc_Middle/4593174/1649681832125/4593174_05.jpg\" width=\"790\" /></div>",
"attributes": [
{
"attrCode": "w1_7537861",
"attrName": "品牌",
"attrValue": "得力"
},
{
"attrCode": "w2_7537861",
"attrName": "型号",
"attrValue": "959",
"attrSeq": "1",
"attrGroupCode": "0",
"attrGroupName": "基本参数"
},
{
"attrCode": "w3_7537861",
"attrName": "颜色",
"attrValue": "灰色",
"attrSeq": "2",
"attrGroupCode": "0",
"attrGroupName": "基本参数"
},
{
"attrCode": "w4_7537861",
"attrName": "规格",
"attrValue": "5.5L",
"attrSeq": "3",
"attrGroupCode": "0",
"attrGroupName": "基本参数"
},
{
"attrCode": "w5_7537861",
"attrName": "内包装",
"attrValue": "",
"attrSeq": "4",
"attrGroupCode": "0",
"attrGroupName": "基本参数"
}
],
"extensions": null
}
}