Depal Open API Doc
  1. 1688
Depal Open API Doc
  • 中文
    • 接入说明
      • 基本概念
      • 签名规则
      • 获取Token
    • 商品服务
      • 1688
        • 商品详情
          POST
        • 商品池查询
          POST
    • 订单服务
      • 下单前预览
      • 提交订单
      • 订单详情
      • 取消订单
      • 物流跟踪查询
  • English
    • API Instruction
      • Signature Rule
      • Get Token
    • product service
      • alibaba wholesale(1688)
        • Commodity Details
        • Commodity Pool Query
    • Order Service
      • Pre-order Preview
      • Submit Order
      • Order Details
      • Cancel Order
      • Logistics tracking query
  1. 1688

商品详情

POST
/openapi/1/{appKey}/1688.product.detail

Request

Path Params
appKey
string 
required
Header Params
Authorization
string 
optional
Default:
{{smile_admin_Authon}}
Example:
{{smile_admin_Authon}}
x-depal-timestamp
string 
required
timestamp when calling the service, milliseconds
x-depal-access-token
string 
required
retrieve from "system.token.get"
x-depal-signature
string 
required
sign the request data, refer to the signature document
Body Params application/json
language
string 
required
需要联系Yato开通对应的语言
语言代码 https://baike.baidu.com/item/%E8%AF%AD%E8%A8%80%E4%BB%A3%E7%A0%81/6594123
en=英语
ru=俄语
ja=日语
vi=越南语
productId
integer <int64>
required
商品ID
Example
{
    "language": "string",
    "productId": 0
}

Responses

🟢200OK
application/json
Body
code
string 
optional
状态码
msg
string 
optional
信息
data
object (ProductDetailResult) 
optional
数据
productId
integer <int64>
optional
商品ID
title
string 
optional
商品标题
titleCn
string 
optional
商品标题,中文
categoryId
integer <int64>
optional
叶子类目ID
categoryName
string 
optional
类目名称
description
string 
optional
商品详情, html
mainVideo
string 
optional
主视频 URL
images
array[string]
optional
商品图片
whiteImage
string 
optional
白底图
attributes
array[object (AttributeDTO) {6}] 
optional
商品属性
skuInfos
array[object (ProductSku) {6}] 
optional
商品SKU信息
saleInfo
object (ProductSaleInfo) 
optional
商品销售信息
productWeight
object (WeightDTO) 
optional
SKU预估重量,长宽高
minOrderQuantity
integer 
optional
最小起批量模型 1
batchOrderQuantity
integer 
optional
一手数量 200, 如果有有值,订购数量必须是该值的倍数
sellerDataInfo
object (sellerDataInfo) 
optional
商家属性数据
status
string 
optional
商品状态
published 发布正常 (默认published)
requestId
string 
optional
请求ID,方便问题跟踪
Example
{
    "code": "",
    "msg": "",
    "data": {
        "productId": 0,
        "mainImageUrl": "",
        "title": "",
        "price": "",
        "quantity": 0,
        "repurchaseRate": "",
        "monthSold": 0,
        "tradeScore": "",
        "firstCategoryId": 0,
        "secondCategoryId": 0,
        "thirdCategoryId": 0,
        "categoryId": 0,
        "categoryName": "",
        "description": "",
        "mainVideo": "",
        "detailVideo": "",
        "images": [
            ""
        ],
        "whiteImage": "",
        "attributes": [
            {
                "attrId": "",
                "attrName": "",
                "valueId": "",
                "value": ""
            }
        ],
        "skuInfos": [
            {
                "skuId": "",
                "price": "",
                "quantity": 0,
                "skuImageUrl": "",
                "attributes": [
                    {
                        "attrId": "",
                        "attrName": "",
                        "valueId": "",
                        "value": ""
                    }
                ],
                "productWeight": {
                    "weight": 0,
                    "length": 0,
                    "width": 0,
                    "height": 0
                }
            }
        ],
        "priceRanges": [
            {
                "startQuantity": 0,
                "price": ""
            }
        ],
        "unit": "",
        "productWeight": {
            "weight": 0,
            "length": 0,
            "width": 0,
            "height": 0
        },
        "minOrderQuantity": 0,
        "batchOrderQuantity": 0
    },
    "requestId": ""
}
Previous
获取Token
Next
商品池查询
Built with