说明:

  • 发布编辑商品


请求地址:

/wapbiz/goods/goodscreateorupdate


请求参数说明:

参数名 类型 是否必须 说明
product string json格式,发布商品不需要带goods_id,不需要store_list,不需要sku_picture_vlaues
goods_id int 商品id
activityPic int 商品活动图id
title string 商品名称
category_id int 分类id
market_price string 市场价
price string 售价
cost_price string 成本价
code string 编号
item_no string 货号
state int 0下架,1上架,默认0下架
stock string 库存
max_buy string 限购数量
description string 商品描述
shipping_fee string 商品描述
shipping_fee_id int 运费模板id
picture int 主图id
imageArray string 商品图合集
goods_spec_format array 选中规格合集
sku_picture_vlaues array 选中规格图片合集
goods_attribute_id int 品类id
goods_attribute string 商品属性
goods_weight string 商品重量
goods_volume string 商品体积
goods_count string 商品数量
shipping_fee_type string 运费类型,0包邮,1统一运费,2运费模板
goods_type int 商品类型,1实物商品 6预约商品


提交参数说明:

发布商品 { "product":{ "title":"121221", "category_id":"22", "market_price":"23.00", "price":"23.00", "cost_price":"0.00", "code":"", "item_no":"67", "state":"0", "stock":"0", "max_buy":"0", "description":"", "shipping_fee":"0.00", "shipping_fee_id":"24", "picture":"7013", "imageArray":"7013", "skuArray":"144:1861;145:1884¦23.00¦23.00¦0.00¦0¦¦0§144:1886;145:1884¦232.00¦23.00¦0.00¦0¦¦0", "goods_spec_format":[ { "spec_name":"尺码11", "spec_id":144, "show_type":"3", "value":[ { "spec_value_name":"AAA", "spec_name":"尺码11", "spec_id":144, "spec_value_id":1861, "spec_value_data":7025 }, { "spec_value_name":"32", "spec_name":"尺码11", "spec_id":144, "spec_value_id":1886, "spec_value_data":7023 } ] }, { "spec_name":"颜色", "spec_id":145, "show_type":"1", "value":[ { "spec_value_name":"3", "spec_name":"颜色", "spec_id":145, "spec_value_id":1884, "spec_value_data":"" } ] } ], "goods_attribute_id":"155", "goods_attribute":"", "goods_weight":"0.00", "goods_volume":"0.00", "goods_count":"0", "shipping_fee_type":"0", "goods_type":1 } }

编辑商品 { "product":{ "title":"121221", "goods_id":"2141", "category_id":"22", "market_price":"23.00", "price":"23.00", "cost_price":"0.00", "code":"", "item_no":"67", "state":"0", "stock":"0", "max_buy":"0", "description":"", "shipping_fee":"0.00", "shipping_fee_id":"24", "picture":"7013", "imageArray":"7013", "sku_picture_vlaues":[ { "spec_id":"144", "spec_value_id":"1861", "img_ids":"7025" }, { "spec_id":"144", "spec_value_id":"1886", "img_ids":"7023" } ], "skuArray":"144:1861;145:1884¦23.00¦23.00¦0.00¦0¦¦0§144:1886;145:1884¦232.00¦23.00¦0.00¦0¦¦0", "goods_spec_format":[ { "spec_name":"尺码11", "spec_id":144, "show_type":"3", "value":[ { "spec_value_name":"AAA", "spec_name":"尺码11", "spec_id":144, "spec_value_id":1861, "spec_value_data":7025 }, { "spec_value_name":"32", "spec_name":"尺码11", "spec_id":144, "spec_value_id":1886, "spec_value_data":7023 } ] }, { "spec_name":"颜色", "spec_id":145, "show_type":"1", "value":[ { "spec_value_name":"3", "spec_name":"颜色", "spec_id":145, "spec_value_id":1884, "spec_value_data":"" } ] } ], "goods_attribute_id":"155", "goods_attribute":"", "goods_weight":"0.00", "goods_volume":"0.00", "goods_count":"0", "shipping_fee_type":"0", "store_list":[ "13" ], "goods_type":1 } }

单规格 { "product":{ "title":"121221", "goods_id":"2141", "category_id":"22", "market_price":"23.00", "price":"23.00", "cost_price":"0.00", "code":"", "item_no":"67", "state":"0", "stock":"0", "description":"", "shipping_fee":"0.00", "shipping_fee_id":"24", "picture":"7013", "imageArray":"7013", "sku_picture_vlaues":[], "skuArray":"", "goods_spec_format":[], "goods_attribute_id":"155", "goods_attribute":"", "goods_weight":"0.00", "goods_volume":"0.00", "goods_count":"0", "shipping_fee_type":"0", "store_list":[ "13" ], "goods_type":1 } }




### 返回示例: **格式错误时** { "code": -1, "message": "该商品类型无法发布或编辑" } **编辑正确时** { "code": "2141", "message": "编辑成功" } **发布正确时** { "code": "2141", "message": "添加成功" } ```