简介

购物车统计

接口地址

/api/v1/store/cart/total

请求参数

名称 必须 描述
ids 购物车ID,多个用英文逗号拼接
uid 用户ID
timestamp 当前时间戳
sign 签名结果,签名算法介绍请点击这里

返回结果

名称 描述
total 购物车总额
count 购物车总数
freight 运费金额

 返回示例

{
    "result": {
        "count": 1,
        "total": 6666,
        "freight": 0
    },
    "msg": "返回成功",
    "code": 200
}