16. 订单结算
开发中GET
/checkout/order请求参数
Query 参数
mode
string
必需
结算模式(buyNow立即购买 cart购物车)
示例值:
buyNow
delivery
integer
必需
配送方式(10快递配送 20上门自提)
示例值:
10
shopId
integer
自提门店ID
示例值:
0
couponId
integer
优惠券ID
示例值:
0
isUsePoints
integer
可选
是否使用积分抵扣(1使用 0不使用)
示例值:
0
cartIds
string
购物车ID集
示例值:
30,31
Header 参数
Access-Token
string
必需
示例值:
1741f74aed758a688515f72572dc8e37
platform
string
必需
示例值:
h5
Body 参数application/json
object {0}
示例
{
"mode": "buyNow",
"delivery": 10,
"payType": 10,
"couponId": 0,
"isUsePoints": 0,
"remark": "",
"goodsId": "10038",
"goodsNum": "1",
"goodsSkuId": "0"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
integer
必需
message
string
必需
data
object
必需
orderId
string
必需
payType
integer
必需
payment
array[string]
必需
示例
{
"status": 200,
"message": "success",
"data": {
"orderId": "10027",
"payType": 10,
"payment": []
}
}
最后修改时间: 1 年前