企业店铺查询
企业可通过接口查询自有的店铺信息
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/mall/external/shop/list?access_token=x
Query参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| access_token | string | 是 | 调用接口凭证 |
Body参数:
返回值:
{
"code": 0,
"msg": "请求成功",
"data": [
{
"shop_id": 6666,
"short_shop_name": "小店",
"shop_name": "XX企业的小店",
"shop_code": "XX企业的小店1"
}
]
}
参数说明:
| 参数 | 类型 | 说明 |
|---|---|---|
| code | int | 返回码 |
| msg | string | 对返回码的文本描述内容 |
| data | Shop[] | 门店信息 |
| shop_id | long | 店铺id |
| short_shop_name | string | 店铺简称 |
| shop_name | string | 店铺名称 |
| shop_code | string | 店铺编码 |