...
| Field | Data Type | Length | Mandatory | Description |
|---|---|---|---|---|
sku | String | 30 | M商品编码 | SKU Code |
skuNameCn | String | 255 | M商品中文名 | Product name in Chinese |
skuNameEn | String | 255 | M商品英文名 | Product name in English |
model | String | 127 | O商品型号 | Product model |
productMaterial | String | 50 | M商品材质 | Product material |
productUsage | String | 50 | M商品用途 | Product usage |
brand | String | 50 | O品牌 | Product brand |
grossWeight | BigDecimal | (8,3) | M重量 | Declare weight of product |
invoiceValue | BigDecimal | (8,2) | M价格 | Declare value of product |
currency | String | 3 | M币种 | Product currency |
hsCode | String | 20 | M原始国HSCODE | HSCode in origin country |
url | String | 4000 | O商品链接 | Product URL |
skuRemark | String | 255 | O | 商品信息备注Product |
productLength | BigDecimal | (8,1) | M长度 | Declare lenght of product |
productWidth | BigDecimal | (8,1) | M宽度 | Declare width of product |
productHeight | BigDecimal | (8,1) | M高度 | Declare height of product |
batterySize | Int | -- | M | 电池配置 Battrey size of product 0:无电池no battery,1:外置电池packaged with Equipment,2:内置电池inside battery,3:纯电池Batteries Only |
otherAttributes | Int | -- | M | 其他属性 Other attributes 0:液体Liquid,1:粉末Powder,2:胶状物Jelly,3:液体 Liquid & 粉末Powder,4:液体 Liquid & 胶状物Jelly,5:粉末 Powder & 胶状物Jelly,6:液体 Liquid & 粉末 Powder & 胶状物Jelly,7:以上都不包含Does no Contain |
shippingBagPacked | Int | -- | M是否自带物流包装 | 0 否 1是Shipping Pack for Product 0:No 1:Yes |
packagingAttributes | String | 300 | O物流包装属性 | Packaging attribute of product |
originCountry | String | 2 | O原产国 请填写国家二字码 | Orgin country, please country code in two character |
countryInformationItems | Object[] | -- | M国家属性 | Country info |
countryCode | Varchar | 2 | M国家二字码 | Country code in two character |
hsCode | Varchar | 20 | M目的国HSCODE;(在countryInformationItems中,区别于原始国hscode) | HSCode in destination country;(in field countryInformationItems,Please insert different country code from HSCode in origin country) |
destinationCountryBrand | Int | -- | M | 目的国品牌:0:自有品牌 1:品牌授权 2:无品牌Brand type in destination country:0:Private Brand 1:Authorized Brand 2:No Brand |
remark | String | 255 | M备注 | Remark for product |
tallyRule | Int | -- | O理货规则 :1:单件 2:单箱 | Tally rule 1:Piece 2:Box |
barcode | String | - | 返回值系统商品编号 | Product barcode in system |
code | String | - | -返回编码 | Response code |
errors | Object[] | - | -报错 | Response error |
message | String | - | -返回信息 | Response message |
messageId | String | - | -返回信息编码 | Response message ID |
success | Boolean | - | - | 成功响应Success |
warnList | - | -废弃字段 | No use |
Request Sample
| 代码块 |
|---|
[
{
"sku": "gas stove03",
"skuNameCn": "燃气灶",
"skuNameEn":"gas stove",
"model": "sso01",
"productMaterial": "耐高温材质",
"productUsage": "厨房烧燃气做饭",
"brand": "老板",
"grossWeight": "15",
"invoiceValue":"999",
"currency": "CNY",
"hsCode": "121212",
"url": "",
"skuRemark": "",
"productLength":"100",
"productWidth":"50",
"productHeight":"40",
"batterySize":"0",
"otherAttributes":"7",
"shippingBagPacked":"1",
"packagingAttributes": "DFAGFDSFTRE",
"originCountry": "",
"countryInformationItems": [
{
"countryCode": "US",
"hsCode": "23512423",
"destinationCountryBrand":"2",
"remark": ""
}
],
"tallyRule":"1"
}
] |
...