功能说明: 根据部门id获取用户列表接口
请求方式:GET(HTTPS)
请求地址: https://qwif.do1.com.cn/qwcgi/api/userAPI/getUserByDepartId.do?token=token&corpId=corpId&departId=departId
参数 |
说明 |
类型 |
是否必须 |
备注 |
---|---|---|---|---|
token |
用于验证 |
String |
是 |
|
corpId |
公司唯一标识 |
String |
是 |
|
departId |
部门id |
String |
是 |
|
//部门ID String departId = "173f023ffc5604e63dc5a8974728851c"; UserApi api = QwSdkUtil.getInter(UserApi.class); ApiUserGetResultVO result = api.getUserByDepartId(QwSdkUtil.getCacheToken(), departId); System.out.println(JSONUtil.stringify(result));
{ "code":"0", "desc":"成功", "data":{ "list":[ { "departmentId":"758eeae9f24f4d8c85f9cb83be63d1f4", "email":"", "followTime":"2017-10-26 10:06:10", "gender":"", "headPic":"http://shp.qpic.cn/bizmp/ck4hSGq23RhhDyuwVW2ErF5yBqjeDzWAbt6/100", "mobile":"", "name":"张三", "organId":"1dca4756-172e-4331-8391-487a5a68d59c", "position":"", "qq":"", "tel":"", "userId":"cbd4edc65a8944af9040834b346f4207", "userStatus":"2", "weixinNum":"zhangsan", "wxUserId":"name12", "birthday":"1999-10-10", "entryTime":"2018-12-12", "attribute":"0", "identity":"44522419950401432X", "nickName":"小明", "sort":"1000", "userNo":"1302313", "isLeader":"1", "tel2":"020-88886666", "address":"广州市天河区", "lunarCalendar":"09-01", "remindType":"1", "mark":"备注说明", } ] } }
参数 | 说明 |
---|---|
userId |
用户ID |
organId |
组织编号 |
userStatus |
用户状态 |
followTime |
关注时间 |
headPic |
用户头像 |
name |
用户名称 |
departmentId |
部门id |
position |
职位 |
mobile |
手机号码 |
gender |
性别(1,男;2,女) |
tel |
座机 |
tel2 |
座机2 |
email |
邮箱 |
qq |
QQ号码 |
weixinNum |
微信号 |
wxUserId |
微信用户Id |
birthday |
阳历生日 |
entryTime |
入职时间 |
attribute |
成员类型 |
identity |
身份证 |
nickName |
昵称 |
sort |
排序 |
userNo |
用户编号 |
isLeader |
身份 |
address |
地址 |
lunarCalendar |
农历生日 |
remindType |
生日祝福提醒 |
mark |
备注 |