客户公司权限查询
- 接口:common/customerBranchStaffs/findStaffByCodes
- Method:GET
- 数据格式:JSON
- 限流信息:100次每天和50次每小时
- 接口说明:根据客户编码List分页查询对应客户编码所有的公司权限
- 其他补充信息:codes最大数量为100
请求参数
字段名称 |
字段类型 |
字段描述 |
是否必填 |
长度 |
bizId |
String |
业务唯一识别码 |
true |
255 |
timestamp |
long |
时间戳 |
true |
无 |
codes |
List |
客户编码 |
true |
64 |
请求示例
/common/customerBranchStaffs/findStaffByCodes?bizId=1755659019000×tamp=1755659019000&codes=test-customer7111
返回参数
字段名称 |
字段类型 |
字段描述 |
resCode |
Integer |
状态码 |
resMsg |
String |
描述 |
bizId |
String |
业务唯一识别码 |
data |
Array |
权限数据列表 |
data.code |
String |
客户代码 |
data.branch_code |
String |
分公司代码 |
返回示例
{
"resCode": 200000,
"resMsg": "success",
"bizId": "1755659019000",
"data": [
{
"code": "test-customer7111",
"branch_code": "100000"
},
{
"code": "test-customer7111",
"branch_code": "100"
}
]
}