请求完整地址
格式参数
id | 接口功能 | 接口URL | 接口类型 | 接口入参 | 接口出参 | 错误码信息 | 示例URL |
---|---|---|---|---|---|---|---|
1 | 获取商铺信息 | /shop/getshopinfo | GET | shop_id | 见详解 | -------- | http://restful.com/resource/account/user?shop_id=226 |
2 | 获取商铺商品列表 | /shop/getshopinfo | GET | shop_id | 见详解 | -------- | http://restful.com/resource/account/user?shop_id=226 |
------- | ------- | ------- | ------- | ------- | ------- | ---------- | ------- |
获取商铺信息
接口入参
in_params:
{
'shop_id': 1, # 商铺id
}
接口出参
out_params:
{
'status':
{
'msg': 'success',
'code': 0,
},
'data': {
'shop_info': {
'shop_name': '星巴克代购(近铁广场店)',
'description': 'balabalabala....',
'address': 'xx省xx市xx区xxxxxxxx',
}
}
}