Appearance
4.3.2 获取商品全量详情接口
接口说明:
Method | URL | ContentType |
---|---|---|
GET | /api/restful/product/{sku}/full/detail | application/json |
URL参数说明:
参数 | 类型说明 | 是否必须 | 长度 | 描述 |
---|---|---|---|---|
sku | string | 必须 | 50 | 商品编号 |
customer_code | string | 非必须 | 50 | 客户编码 ,不填的情况,默认返回全部 |
返回结果说明
参数 | 子字段 | 类型说明 | 描述 |
---|---|---|---|
sku | string | 商品编号 | |
detail | JSON | 商品详情 | |
url | string | 商品url | |
model | string | 型号 | |
weight | double | 重量 | |
image_path | string | 主图地址 | |
state | int | 上下架状态 | |
brand_name | string | 品牌 | |
name | string | 商品名称 | |
product_area | string | 产地 | |
upc | string | 条形码 | |
unit | string | 单位 | |
category | string | 类别 | |
categoryName | string | 类别名称 | |
service | string | 售后服务 | |
introduction | string | 商品描述(图文, html) | |
param | string | 商品属性(html) | |
prdParams | json | 商品属性 | |
ware | string | 包装清单 | |
sale_actives | int | 是否促销 | |
tax_catetory_code | string | 税收分类编码 | |
search_keyword | string | 搜索关键词 | |
productExtensions | List | 扩展信息 | |
images | JSON | 图片信息:[{"path": "图片路径", "order": 图片排序}] | |
path | string | 图片路径 | |
order | int | 图片排序 | |
price | JSON | 价格 | |
price | double | 协议优惠价(双方签订的协议价格) | |
mall_price | double | 商城售价(商品在我司商城的售价) | |
market_price | double | 市场售价(商品市面上的价格) | |
tax_rate | float | 商品税率 | |
naked_price | double | 商品裸价 | |
tax_amount | double | 发票税额 | |
stock | JSON | 库存 | |
desc | string | 描述(有货、缺货) | |
num | double | 库存数量 | |
area | string | 地址,默认* |
请求参数示例:
/api/restful/product/1049204/full/detail
返回数据示例:
json
{
"result": {
"sku": "1049204",
"detail": {
"url": "",
"model": "MP399A",
"weight": 18.6,
"image_path": "http://res.clpcdn.com/pmspic/ItemPicture/2/20/126/49191/Original/1049204.jpg",
"state": 1,
"brand_name": "宝克",
"name": "宝克 可加墨白板笔 MP399A (蓝色) 12支/盒",
"product_area": "中国",
"upc": "6921738085234",
"unit": "支",
"category": "010101",
"categoryName": "笔类",
"service": "/",
"introduction": "<div id='Background' style='border-bottom: medium none; border-left: medium none; margin: 0px auto; width: 790px; border-top: medium none; border-right: medium none'><table id='__01' width='790' height='5169' border='0' cellpadding='0' cellspacing='0'><tbody><tr class='firstRow'><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_01.jpg' width='790' height='925' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_02.jpg' width='790' height='488' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_03.jpg' width='790' height='620' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_04.jpg' width='790' height='781' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_05.jpg' width='790' height='820' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_06.jpg' width='790' height='730' alt=''/></td></tr><tr><td><img src='http://pic.colipu.com/ProductDescribe/1049204/1049204_07.jpg' width='790' height='805' alt=''/></td></tr></tbody></table><style= border-bottom:='' medium='' border-left:='' border-top:='' border-right:=''></style=></div>",
"param": "",
"prdParams": [{
"name": "包装规格",
"value": "500张/包 5包/箱"
},
{
"name": "产地",
"value": "中国"
},
{
"name": "克重",
"value": "70g"
},
{
"name": "品牌",
"value": "益思"
},
{
"name": "入数",
"value": "1包"
},
{
"name": "纸质",
"value": "全木浆"
}
],
"ware": "白板笔*1支",
"sale_actives": 1,
"tax_catetory_code": "109062703",
"search_keyword": "白板笔",
"productExtensions": [{
"columnName": "第三方链接",
"columnKey": "ThirdUrl",
"columnValue": "https://item.jd.com/1525554.html"
}]
},
"images": [{
"path": "http://res.clpcdn.com/pmspic/ItemPicture/2/20/126/49191/Original/1049204.jpg",
"order": 1
},
{
"path": "http://res.clpcdn.com/pmspic/ItemPicture/2/20/126/49191/Largest/1_1049204.jpg",
"order": 2
}
],
"price": {
"price": 1.18,
"mall_price": 1.6,
"market_price": 1.9,
"tax_rate": 0.13,
"naked_price": 1.04,
"tax_amount": 0.14
},
"stock": {
"desc": "有货",
"num": 50,
"area": "*"
}
},
"success": true,
"errormsg": "",
"errorcode": "0",
"requestId": "2f1e4985-68be-486c-b4ea-2d4b0cd7d024"
}