商品新增
POST
/api/openPlatform/product/add状态码
状态码 | 描述 |
---|---|
000001 | 成功 |
000400 | 请求失败,详细见描述(msg) |
000401 | 鉴权失败 (token已过期或者token无效) |
000403 | 无权限访问 |
000405 | 请求方法不允许 |
000422 | 请求数据异常 |
000429 | 请求太频繁 |
000500 | 程序内部错误 |
013001 | 客户SKU已存在 |
013002 | 客户SKU不存在 |
013003 | 客户SKU状态非法 |
请求参数
Body 参数application/json
categoryId
integer
分类ID
见分类接口
customerSku
string
客户商品编码(SKU)
由2-50位的英文字母(大小写) ,数字 , 空格 , 圆括号( ) , 反斜杠\ , 点. , 中斜杠- , 星号* , 加号+, # 组成
ean
string
EAN码/条形码/第三方提条码
可以作为仓库扫描出库的依据
thirdErpSku
string
第三方ERP的商品编码
可以作为仓库扫描出库的依据
productRefCode
string
参考编码
productName
string
商品英文名称
productCnName
string
商品中文名称
productDeclareName
string
商品申报英文名称
productDeclareCnName
string
商品申报中文名称
productLink
string
商品链接
productAttr
integer
货物属性
见属性接口
productType
integer
货物类型
1包裹,2信封
hasBrand
integer
是否有品牌
1有,0没有
brandName
string
品牌名称
当hasBrand=1必填
unitCode
string
成交单位
见成交单位接口
productModel
string
型号
productSpecs
object
规格信息
length
number
长CM
width
number
宽CM
height
number
高CM
weigh
number
商品重量G
packageLength
number
打包后长CM
packageWidth
number
打包后宽CM
packageHeight
number
打包后高CM
packageWeigh
number
打包后商品重量G
use
string
用途
productImages
array[string]
商品图片
图片链接
outProductCustomsInfo
object
出口海关信息
country
string
国家编码
price
number
申报价格USD
inProductCustomsInfo
array [object {2}]
进口海关信息
country
string
国家编码
price
number
申报价格USD
mainWarehouseCode
string
主仓编码
refCostPrice
number
参考成本价(CNY)
示例
{
"categoryId": 1,
"customerSku": "AM30991",
"productRefCode": "AM30991-REF",
"productName": "LAMP",
"productCnName": "48FT15头2WLED户外防水灯串英规",
"productDeclareName": "LAMP",
"productDeclareCnName": "48FT15头2WLED户外防水灯串英规",
"productLink": "https://www.amazon.com/Eyekepper-Modern-Single-Waterfall-Bathroom/dp/B00KSW5Q8Q/ref=sr_1_2?s=kitchen-bath&ie=UTF8&qid=1487210962&sr=1-2&keywords=Faucet",
"productAttr": 0,
"productType": 0,
"hasBrand": 1,
"brandName": "华为",
"unitCode": "pcs",
"use": "科研",
"material": "金属",
"productModel": "无",
"productSpecs": {
"length": 1,
"width": 1.1,
"height": 1.2,
"weigh": 1.3,
"packageLength": 1,
"packageWidth": 1,
"packageHeight": 1,
"packageWeigh": 1
},
"productImages": [
"https://m.media-amazon.com/images/I/41OAUIloxPL._AC_US40_.jpg",
"https://m.media-amazon.com/images/I/41rZdeJfI-L._AC_US40_.jpg"
],
"outProductCustomsInfo": {
"country": "CN",
"price": 1.44
},
"inProductCustomsInfo": [
{
"country": "MY",
"price": 1.22
},
{
"country": "SG",
"price": 1.33
}
],
"mainWarehouseCode": "301",
"refCostPrice": 1
}
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
state
string
必需
msg
string
必需
data
object
可选
示例
{
"state": "string",
"msg": "string",
"data": {}
}
最后修改时间: 2 年前