注册
  1. 商户接口
  2. 子商户添加接口

1)由平台提供,开发者新增自己的子商户

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

3)请求参数

变量名

必填

类型

说明

code

String(128)

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

APPID

String(128)

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

name

String(128)

新增的商户名称

sort

int(10)

类别:4:代理商  5:场地方

affiliation

int(10)

场地方归属的代理商,当类别为5的时候 affiliation可填写;




4)举例如下:

$ date =[

 code => ‘Zj20190924125636,

 APPID=>wx68727as88872t97,

 name=>xxx,

 sort=>5,

 affiliation=>1

];

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

 

5)返回结果

变量名

必填

说明

code

状态码,200为正常,其他均为不正常(200/1044

msg

成功或者失败的说明(例:添加成功/添加失败


data

该接口返回具体的数值


示例:

{"code":200,"msg":"添加成功","data":""}