功能说明:获取区域列表
请求方式:POST(HTTPS)multipart/form-data
请求地址:https://qwif.do1.com.cn/qwcgi/api/meet/ajaxRegionList.do?token=token&corpId=corpId
| 参数 | 类型 | 说明 | 是否必需 |
|---|---|---|---|
| token | string | 用于验证 | 是 |
| corpId | string | 公司唯一标识 | 是 |
MeetApi meetApi = QwSdkUtil.getInter(MeetApi.class);
// 调用接口
RegionList resultList = meetApi.ajaxRegionList(QwSdkUtil.getCacheToken());
// 打印输出结果
System.out.println(JSONUtil.stringify(resultList));
{
"code":"0",
"data":
{
"regionList":
[
{
"creator":"test12",
"id":"02f5ca343129495bad85d162d2bd5b34",
"personName":"创建人名字",
"regionName":"会议区域示例1",
"roomNum":36
},
{
"creator":"test12",
"id":"1c0221a6-588a-438f-af43-2436b72cf70a",
"personName":"创建人名字",
"regionName":"会议区域示例2",
"roomNum":5
},
{
"creator":"test12",
"id":"a4394d93-a3c8-4a16-ac56-8b02386960a7",
"personName":"创建人名字",
"regionName":"会议区域示例3",
"roomNum":7
}
]
},
"desc":"成功"
}
regionList 参数说明
| 参数 | 类型 | 说明 |
|---|---|---|
| creator | string | 创建人id |
| id | string | 区域id |
| personName | string | 创建人账号名 |
| regionName | string | 区域名 |
| roomNum | number | 下属的会议室数目 |