简要描述Description
  • 获取商品详情,Fetch any product you know, sku required. please find sku from product list. or you can use product list api, because they have same response structure like tile,product, all_no, etc.
请求URL
  • /wms_api/product/detail
请求方式 Method
  • POST
请求示例Request
{
    "timestamp": {{timestamp}},
    "sign": "{{sign}}",
    "sku": "",  //必需required
    "store_id": 1 //可选Optional
}
返回示例Response
{
    "code": 200,
    "msg": "success",
    "data": {
        "id": 26493,
        "uid": 179,
        "sku": "B0BR6P1DLN-03244",
        "title": "海藻苹果醋软糖80/瓶",
        "cover_shot": "https://cdn.fbbship.com/oversea/file/9260901569971233.jpeg",
        "pictures": ["url","url"], //always first as main image
        "introductions": ["text","text"],  //要点, show by ul>li, same as amazon
        "descriptions": ["text","text"],  //array description shown by table, same as amazon
        "description": "简介", //plain text, or html, full detail description, if have shown below  descriptions, above description_pictures
        "description_pictures": ["url","url"], //full description list by image one by one
        "certificates": ["url","url"],  //if have, show bottom of detail
        "package_id": 3,
        "package_name": "袋装",
        "package_name_en": "None",   //english
        "package_name_es": null, //spanish
        "category_id": 2,
        "category_name": "美妆饰品",
        "category_name_en": "Beauty & Accessories",  //english
        "category_name_es": "Maquillaje & ornamento", //spanish
        "service_name": "一件代发",
        "attribute": [
            "正常" //规格:正常、带电
        ],
        "made_in": "中国",
        "all_no": 0, //所有仓库库存数量, all inventory in all warehouse
        "width": 5,
        "height": 5,
        "length": 12,
        "dimension_unit": "cm",
        "weight": 240,
        "weight_unit": "g",
        "plan_id": 223,  //分享ID if not null, it means other seller shared
        "plan_uid": 1, //分享人UID if not null, it means other seller uid
        "created_at": "2024-01-29 08:30:55",
        "resale_price": "12.00",  //分销价格 price other seller provide
        "stocks": [{
            "store_id": 1,
            "store_name": "US-LAX",
            "all_no": 0 //库存数量Inventory
        }]
    }
}
作者:admin  创建时间:2024-01-30 11:55
最后编辑:admin  更新时间:2025-05-06 11:38