#### 接口版本: |版本号|制定人|修订日期|说明| |:----|:----|:---- |:----| |1.0 |Karen |2021-10-26 |建立文档| #### 请求URL: - {{HOST}}/api/shoppingproduct/ordertotal #### 请求方式: - 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`| #### 请求参数: |参数名|是否必须|类型|说明| |:---- |:---|:----- |----- | |country_code|是|string|国家二字简码| |shipping_option_id|是|integer|配送id| |payment_option_id|是|integer|支付id| |use_credits|否|integer|使用积分数量| |buyNow|否|integer|立即购买产品:1 是,默认 0| #### 返回示例: **正确时返回:** ``` { "code": 200, "message": "Success", "data": { "shipping_fee": "24.000",//配送费用 "handling_fee": "15.000",//手续费 "tax_fee": 0,//税费 "used_credits_amount": 0,//使用积分费用 "cart_total": "10.778",//购物车产品总额 "order_total": "49.778",//订单总额 "order_total_defaultCurrencyPay": "49.778"//订单总额(默认货币) } } ``` #### 返回CODE说明: |参数名|说明| |:----- |----- | |200 |成功 | |3001 |字段验证错误 | |5001|服务内部错误| #### 备注: - 更多返回错误代码请看首页的错误代码描述