文档
测试
POST
/Home/Order/goBuy

请求参数

参数名
类型
描述
必填
country_id
Number
国家id
必填
currency_id
Number
货币id
必填
lang_id
Number
语言id
必填
host
String
站点域名
必填
app_user_id
String
用户id
必填
type
Number
购买类型:1 购物车下单, 2 立即购买, 3 拼购, 4 套购, 5 捆绑包
必填
bundled_type
Number
捆绑类型,捆绑包购买时需要填写
必填
goods
Array
商品列表:[ id: 商品skuId, num: 商品数量 ]
必填

响应参数

参数名
类型
描述
必填
status
Number
状态
必填
msg
String
提示信息
必填
data
Object
订单信息
必填

说明 / 示例

```js { "status": 1, "msg": "Operation Succeeded", "data": { "goods": [{ // 商品列表 "title": "12V\/24V 8A Smart Car Battery Charger LCD ", "goods_id": "37830", "d_integral": "0", "price_member": 41.96, // 会员价 "stock": "1000", // 库存量 "p_id": "37829", // 商品id "sku": "511408", // sku "spu": "P017640", // spu "fatherImg": "https:\/\/cdn.img.shimmerqueen.com\/Uploads\/goods\/202008\/f8751daf6652804b4833a1cec3fc898a.jpg", // 商品图片 "price_market": "55.95", // 市场价 "attr": "As Picture Show", // 商品属性 "num": 1, // 商品数量 "type": 1, "active_gifts": [], // 礼品商品列表 "old_price_member": 55.95, "promotionDescription": "Flash Deals", // 促销描述 "prom_id": 0 }], "coupon8Data": [], // 全局优惠券 "is_coupon_goods": false, "freight": 5, // 运费 "total_price": 55.95, // 总价,不含运费 "address": { // 地址 "id": "9128", // 地址id "realname": "test", // 用户名称 "mobile": "17688877891", "prov": "Queensland", "city": "AUGUSTINE HEIGHTS", "dist": "", "city_str": "AUGUSTINE HEIGHTS", "dist_str": "", "address": "test", "status": "0", "email": "test@qq.com", "zipcode": "4300", "pov_id": "6128", "city_id": "48039", "dist_id": "0", "post_code": "4300" }, "coupon": [], // 可用优惠券列表 "coupon_price": 0, // 优惠券价格 "active_gifts": [], // 全局礼品 "integral": 0, // 积分 "z_integral": 0, "pay_integral": 0, "integral_money": 0, "pay_type_info": [{ // 支付类型 "id": "7", "name": "PayPal", "icon": "https:\/\/img.shimmerqueen.com\/Uploads\/pay\/paypal.png", "discount": "0.00" }], "pay_type_str": "5f55b8360e5211599453238", "preferences": 13.99, "couponGoodsInfos": [], "key": "bf104d894c7391cf7c06e3628dd824e5" } } ```