新增商品
POST
/product
对外接口/商品
请求参数
Header 参数
authori-zation
string
token
示例值:
Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ0ZXN0LnByby53dWh0Lm5ldCIsImF1ZCI6InRlc3QucHJvLnd1aHQubmV0IiwiaWF0IjoxNjQ5NzQ2MjAyLCJuYmYiOjE2NDk3NDYyMDIsImV4cCI6MTY1MDM1MTAwMiwianRpIjp7ImlkIjoxLCJ0eXBlIjoiYWRtaW4ifX0.-xDXOdYfBNsu3IqF3nMO_E_fop2lxkwNw25fdQpzGVQ
Body 参数application/json
cate_id
array[string]
分类ID
store_info
string
商品简介
keyword
string
商品关键字
unit_name
string
单位名称
store_name
string
商品名称
postage
string
邮费
slider_image
array[string]
轮播图
description
string
商品详情
spec_type
integer
规格类型
is_limit
integer
是否开启限购
limit_type
integer
限购类型
limit_num
integer
限购数量
vip_product
integer
是否会员专属商品
is_vip
integer
是否开启会员价格
is_show
integer
上架状态
presale
integer
预售商品开关
presale_day
integer
预售发货日
presale_time
array[string]
预售时间段
sort
integer
排序
activity
array[string]
活动优先级
recommend
array[string]
商品推荐
video_open
integer
是否开启视频
video_link
string
视频链接地址
ficti
integer
虚拟销量
give_integral
integer
赠送积分
is_sub
integer
是否单独分佣
attrs
array [object {13}]
必需
value1
string
第一个规格名称
value2
string
第二个规格名称
detail
object
规格值组合
pic
string
属性图片
price
string
售价
cost
string
成本价
ot_price
string
原价
bar_code
string
产品编号
weight
string
重量
volume
string
体积
brokerage
string
一级返佣
brokerage_two
string
二级返佣
vip_price
string
会员专享价
items
array [object {2}]
商品规格
value
string
规格名称
detail
array[string]
规格值
示例
{
"postage": "9.90",
"recommend": [
"is_hot",
"is_best"
],
"presale": 1,
"presale_day": 1,
"presale_time": [
"2022-07-20 00:00",
"2022-08-20 00:00"
],
"is_limit": 0,
"limit_type": 0,
"limit_num": 0,
"video_open": 0,
"video_link": "",
"vip_product": 0,
"store_name": "美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107",
"cate_id": [
2
],
"keyword": "电磁炉 美的",
"unit_name": "件",
"store_info": "美的xxxxx",
"slider_image": [
"https://data44.wuht.net//uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg"
],
"description": "<p>详情</p>",
"ficti": 0,
"give_integral": 0,
"sort": 10,
"is_show": 1,
"spec_type": 1,
"attrs": [
{
"value1": "大面版",
"value2": "30寸",
"detail": {
"锅型": "大面版",
"尺寸": "30寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-01",
"weight": "21.00",
"volume": "3.00"
},
{
"value1": "大面版",
"value2": "33寸",
"detail": {
"锅型": "大面版",
"尺寸": "33寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-02",
"weight": "22.00",
"volume": "3.00"
},
{
"value1": "火锅必备",
"value2": "30寸",
"detail": {
"锅型": "火锅必备",
"尺寸": "30寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-03",
"weight": "21.00",
"volume": "3.00"
},
{
"value1": "火锅必备",
"value2": "33寸",
"detail": {
"锅型": "火锅必备",
"尺寸": "33寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-04",
"weight": "22.00",
"volume": "3.00"
}
],
"items": [
{
"value": "锅型",
"detail": [
"大面版",
"火锅必备"
]
},
{
"value": "尺寸",
"detail": [
"30寸",
"33寸"
]
}
],
"type": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/product' \
--header 'authori-zation: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ0ZXN0LnByby53dWh0Lm5ldCIsImF1ZCI6InRlc3QucHJvLnd1aHQubmV0IiwiaWF0IjoxNjQ5NzQ2MjAyLCJuYmYiOjE2NDk3NDYyMDIsImV4cCI6MTY1MDM1MTAwMiwianRpIjp7ImlkIjoxLCJ0eXBlIjoiYWRtaW4ifX0.-xDXOdYfBNsu3IqF3nMO_E_fop2lxkwNw25fdQpzGVQ' \
--header 'Content-Type: application/json' \
--data-raw '{
"postage": "9.90",
"recommend": [
"is_hot",
"is_best"
],
"presale": 1,
"presale_day": 1,
"presale_time": [
"2022-07-20 00:00",
"2022-08-20 00:00"
],
"is_limit": 0,
"limit_type": 0,
"limit_num": 0,
"video_open": 0,
"video_link": "",
"vip_product": 0,
"store_name": "美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107",
"cate_id": [
2
],
"keyword": "电磁炉 美的",
"unit_name": "件",
"store_info": "美的xxxxx",
"slider_image": [
"https://data44.wuht.net//uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg",
"https://data44.wuht.net//uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg"
],
"description": "<p>详情</p>",
"ficti": 0,
"give_integral": 0,
"sort": 10,
"is_show": 1,
"spec_type": 1,
"attrs": [
{
"value1": "大面版",
"value2": "30寸",
"detail": {
"锅型": "大面版",
"尺寸": "30寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-01",
"weight": "21.00",
"volume": "3.00"
},
{
"value1": "大面版",
"value2": "33寸",
"detail": {
"锅型": "大面版",
"尺寸": "33寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-02",
"weight": "22.00",
"volume": "3.00"
},
{
"value1": "火锅必备",
"value2": "30寸",
"detail": {
"锅型": "火锅必备",
"尺寸": "30寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-03",
"weight": "21.00",
"volume": "3.00"
},
{
"value1": "火锅必备",
"value2": "33寸",
"detail": {
"锅型": "火锅必备",
"尺寸": "33寸"
},
"pic": "http://www.crmebstd450.test/uploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg",
"price": "100.00",
"cost": "90.00",
"ot_price": "80.00",
"bar_code": "MD-04",
"weight": "22.00",
"volume": "3.00"
}
],
"items": [
{
"value": "锅型",
"detail": [
"大面版",
"火锅必备"
]
},
{
"value": "尺寸",
"detail": [
"30寸",
"33寸"
]
}
],
"type": 0
}'
返回响应
🟢200成功
application/json
Body
status
integer
状态码
msg
string
信息描述
data
object
返回值
id
integer
商品ID
示例
{
"status": 200,
"msg": "保存成功",
"data": {
"id": 78
}
}
修改于 2022-07-13 02:23:40