注册
1232
  1. 商品库存类接口
  2. 库存设置

1)由平台提供,开发者可添加某商品的信息

2)URL地址:https://public.zjuhe.cn/api/sc_stock_set

3)请求参数

变量名

必填

类型

说明

encoding

String(128)

专属编码(例:sc20190924125636,平台方提供开发者访问的标识码

APPID

String(128)

公众号ID(例:wx68727as88872t97),微信公众号专属标识

terminal_id

String(15)

设备ID(例:869270048847410

goods_id

Int(10)

商品id(例:1188)

chest_id

Int(10)

柜门号(例:10)

state

Int(2)

柜门状态0:正常, 1:废弃

numb

Int(2)

补货数量一个柜门固定补货数量为1,柜门状态为废弃1时补货数量为0

 

4)举例如下:

$ date =[

 encoding => ‘sc20190924125636,

 APPID => ‘wx68727as88872t97,

 terminal_id => ‘869270048847410,

 goods_id => 1188,

 chest_id =>10,

 state    =>0,

  ‘numb’  =>1

];

$result = get_http_content(' https://public.zjuhe.cn/api/ sc_stock_set, 'POST',$date);

5)返回结果

变量名

必填

说明


encoding

状态码,0为正常,其他均为不正常(1024


msg

成功或者失败的说明(例:新增成功/新增失败)


data

该接口返回具体的数值


示例:

{"code":200,"msg":"新增成功","data":""}