更新SKU


PUT http://openapi.ck1info.com/v1/merchantSkus
接口说明: 更新SKU 新数据全量覆盖旧数据,空值的也会覆盖有值
Http 201 - 更新成功
Http 200 - 更新成功,未更改数据
Http 400 - 提交的数据有误,请检查

输入参数

Body Parameters
名称类型格式要求是否必须描述示例值
Sku string

长度: 0 ~ 100

必须

商家SKU

bag-y001

HsCode string

满足正则: ^\d{6,10}$|^$

海关编码(HsCode-出口国)

ProductDescription string

长度: 0 ~ 2000

必须

产品描述

Sample description

DeclareName string

满足正则: (?![\d\s]+$)^[a-zA-Z_\s0-9\-\(\)\'&,\|]+$

长度: 0 ~ 100

必须

申报名称

bag

DeclareNameCn string

长度: 0 ~ 100

中文申报名称

bag

DeclareValue decimal number

浮点数格式: 18,2

必须

申报价值(USD)

5

ProductModel string

长度: 0 ~ 100

产品说明

ProductAmountWarn integer

范围: 0 ~ 2147483647

库存警报

0

ProductCategory string

长度: 0 ~ 50

产品品类

bag

Brand string

None.

品牌

迪士尼

Material string

长度: 0 ~ 50

材料-英文

MaterialCN string

长度: 0 ~ 50

材料-中文

ImportHsCode string

满足正则: ^\d{6,10}$|^$

海关编码(HsCode-进口国)

ProductRemark string

长度: 0 ~ 255

产品备注

书包

ProductImage string

None.

请求数据为图片对应的BASE64码。图片大小只能在5M内, 目前只支持 JPG PNG JPNG 的图片类型

Suffix string

None.

目前只支持 (JPG,PNG,JPNG,JPEG,GIF,SVG ) 的图片类型

JPG

输入参数的json形式
{
  "Sku": "sample string 1",
  "HsCode": "sample string 2",
  "ProductDescription": "sample string 3",
  "DeclareName": "sample string 4",
  "DeclareNameCn": "sample string 5",
  "DeclareValue": 6,
  "ProductModel": "sample string 7",
  "ProductAmountWarn": 8,
  "ProductCategory": "sample string 9",
  "Brand": "sample string 10",
  "Material": "sample string 11",
  "MaterialCN": "sample string 12",
  "ImportHsCode": "sample string 13",
  "ProductRemark": "sample string 14",
  "ProductImage": "sample string 15",
  "Suffix": "sample string 16"
}

返回结果

None.