文档
测试

儿童会员卡-查询儿童商品剩余库存

POST
http://crm.houcaller.com/htest/openapi/v1/listHbsChildItemStock

接口描述

查询该城市各个门店剩余库存数据

请求头

参数名
类型
描述
必填
Content-Type
String
application/json
必填

请求参数

参数名
类型
描述
必填
channel
string
渠道名
必填
timestamp
string
时间戳
必填
param
string
参数(对json字符串进行DES加密)
必填
city
string
城市
必填
itemId
string
商品ID
必填

响应参数

参数名
类型
描述
必填
msg
string
响应说明
必填
code
number
响应code
必填
data
object
响应参数
必填
list
array
数据列表
必填
address
string
门店地址
必填
city
string
城市
必填
orgCode
string
餐厅编号
必填
orgName
string
餐厅名称
必填
restNum
number
剩余库存
必填

说明 / 示例

请求示例: ``` { "param": "A118EB7493DD7CCB6911A3F5329302629B9D31EA0CBC34187DC0D3AEBF4E2453DBE6E719BA3406BDEF87CFC90941B3BE3C83C0D56A693807", "channel": "hkl-test", "timestamp": "1586489243531" } ``` param明文示例: ``` { "itemId": "5cc51bc02f2072209c1b7968", "city": "厦门" } ``` 响应示例: ``` { "msg": "操作成功", "code": 0, "data": { "list": [ { "address": "厦禾路261-13号(眼科医院对面) ", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0117", "orgName": "厦门思北源昌餐厅", "remark": "", "restNum": 83, "sellNum": 0, "totalNum": 0 }, { "address": "莲前大道卧龙晓城对面", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0107", "orgName": "厦门金鸡亭餐厅", "remark": "", "restNum": 28, "sellNum": 0, "totalNum": 0 }, { "address": "禾祥西路82号", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0103", "orgName": "厦门禾祥西餐厅", "remark": "", "restNum": -111, "sellNum": 0, "totalNum": 0 }, { "address": "金湖路101号五缘湾乐都汇购物中心L2F017、018", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0131", "orgName": "厦门枋湖乐都汇餐厅", "remark": "", "restNum": 307, "sellNum": 0, "totalNum": 0 }, { "address": "兴山路中港花园SM对面", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0106", "orgName": "厦门中港餐厅", "remark": "", "restNum": 318, "sellNum": 0, "totalNum": 0 }, { "address": "体育路95号 工人体育馆之配套商业6号店(大润发旁)", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0121", "orgName": "厦门大润发餐厅", "remark": "", "restNum": 156, "sellNum": 0, "totalNum": 0 }, { "address": "杏南路27号(杏滨街道办对面)", "city": "厦门", "cityPy": "", "cityPyFirst": "", "id": "", "inputDate": null, "itemId": "", "itemName": "", "lockVersion": 0, "lossNum": 0, "modifyDate": null, "orgCode": "0116", "orgName": "厦门杏林杏南餐厅", "remark": "", "restNum": 62, "sellNum": 0, "totalNum": 0 } ] } } ```