简要描述:

  • 获取门店商品列表

请求域名:

  • http://xx.com

请求URL:

POST:plugin.store-cashier.frontend.store.goods.get-goods-list

APP请求URL:

POST:plugin.store-cashier.frontend.app.store.goods.get-goods-list

参数:

参数名 是否必须 类型 说明
store_id string 门店ID

返回示例:

正确时返回:

  {
    "result": 1,
    "msg":"获取商品成功",
    "data": {
      "count": "商品数量",
      "goods_data":{
         "title": "商品名称",
         "stock": "商品库存",
         "price": "商品价格",
         "real_sales": 商品销量 ,
         "change_thumb": "商品图片地址",
      },

    }
  }

错误时返回:

  {
    "result": 0,
    "msg": "无商品数据"
  }

返回参数说明:

参数名 类型 说明
count int 商品数量
title string 商品名称
stock string 商品库存
price string 商品价格
real_sales string 商品名称
change_thumb string 商品图片地址

备注:

  • 更多返回错误代码请看首页的错误代码描述