#### 接口版本: |版本号|制定人|修订日期|说明| |:----|:----|:---- |:----| |1.0 |Karen |2021-10-26 |建立文档| #### 请求URL: - {{HOST}}/api/shoppingproduct/create #### 请求方式: - POST #### 请求头: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |Content-Type |是 |string |application/json | |Accept |是 |string |application/json | |Authorization|是|string|Bearer {token},`登录`接口获取| |uuid |否 |string |uuid,每个接口都会通过 headers 头返回 | |locale |否 |string |语言,默认 en,更多配置查看文件 `/config/strongshop.php` 中 `langs`| |currency |否 |string |货币,默认 USD,更多配置查看文件 `/config/strongshop.php` 中 `currencies`| #### 请求参数: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |product_id|是|integer|产品id| |qty|是|integer|产品数量| #### 返回示例: **正确时返回:** ``` { "code": 200, "message": "Success", "data": { "total": { "cart_qty_total": 1,//产品总数 "cart_total": "10.778"//产品总额 }, "cart_weight": 1000,//产品总重 //产品列表 "rows": [ { "id": 312, "user_id": 22, "product_id": 1,//产品id "product_price": "10.780",//原售价 "product_price_now": "10.778",//现售价(实际结算价格) "qty": 1,//数量 "is_buy_now": 0,//立即购买:0 否,1 是 "created_at": "2021-10-26 14:54:59", "updated_at": "2021-10-26 14:54:59", //产品列表 "product": { "id": 1,//产品id "title": "Womens Mini Dress Batwing Boat Neck Long Sleeve Tunic Shift Dress Black-S",//产品名称 "sku": "dress100-01-s",//产品sku "img_cover": "http://demo.strongshop.local/storage/202103/rx0xVDd18IOOT5sxAT7M9QAQUFCczeFJWhAz2p8g_thumb.jpg",//产品图 "original_price": "14.011",//市场价格 "sale_price": "10.778",//售价 "stock": 98,//库存 "stock_status": 1, //批发价格信息 "wholesale_set": { "num": [ "1", "5", "10" ], "price": [ "10.778", "9.469", "7.537" ] }, "weight": 1000,//重量 //产品规格 "specs": [ { "id": 1, "name": "颜色", "pivot": { "product_id": 1, "spec_id": 1, "spec_value": "Black" } }, { "id": 2, "name": "尺寸", "pivot": { "product_id": 1, "spec_id": 2, "spec_value": "S" } }, { "id": 10, "name": "3333", "pivot": { "product_id": 1, "spec_id": 10, "spec_value": "1" } } ] } } ] } } ``` #### 返回CODE说明: |参数名|说明| |:----- |----- | |200 |成功 | |3001 |字段验证错误 | |5001|服务内部错误| #### 备注: - 更多返回错误代码请看首页的错误代码描述