主頁 > 服務(wù)與支持 > 開發(fā)平臺 > 服務(wù)端API參考 > 企業(yè)管理員管理 分頁查詢企業(yè)管理員
更新時間:2019-11-20
通過該接口分頁查詢企業(yè)管理員。
請求方法 |
POST |
---|---|
請求地址 |
/rest/usg/datacenter/v1/corp/admin/search |
傳輸協(xié)議 |
HTTPS |
參數(shù) |
是否必須 |
類型 |
位置 |
描述 |
---|---|---|---|---|
Authorization |
是 |
String |
Header |
授權(quán)令牌。將執(zhí)行鑒權(quán)響應(yīng)的accessToken進行Base64轉(zhuǎn)碼操作。 樣例:Basic Base64(accessToken) |
condition |
否 |
String |
Body |
查詢條件。 長度:0-255。 |
sortField |
否 |
String |
Body |
排序字段。用于根據(jù)特定字段對搜索結(jié)果排序。 當(dāng)前支持按照用戶通訊錄排序等級排序。 長度:0-255。 |
isAsc |
否 |
Boolean |
Body |
排序方式是否為升序排序。 默認(rèn)值:true |
pageIndex |
否 |
Integer |
Body |
頁面起始頁。 默認(rèn)值:1 |
pageSize |
否 |
Integer |
Body |
頁面大小。 默認(rèn)值:10 范圍:1-1000。 |
參數(shù) |
類型 |
描述 |
---|---|---|
returnCode |
String |
業(yè)務(wù)返回碼。 |
returnDesc |
String |
返回描述。 |
achievementTime |
String |
響應(yīng)產(chǎn)生時間。 |
requestId |
String |
請求唯一標(biāo)識。 |
data |
分頁查詢企業(yè)管理員信息。 |
參數(shù) |
類型 |
描述 |
---|---|---|
pageIndex |
Integer |
頁面起始頁。 |
pageSize |
Integer |
頁面大小。 |
totalCount |
Integer |
總數(shù)量。 |
data |
QueryAdminResultDTO[0..*] |
查詢企業(yè)管理員返回的結(jié)果。 |
參數(shù) |
類型 |
描述 |
---|---|---|
id |
String |
頁面起始頁。 |
account |
String |
頁面大小。 |
name |
String |
總數(shù)量。 |
adminType |
Integer |
管理員類型。 0:默認(rèn)管理員 1:普通管理員 3:運營管理員 4:運維管理員,只有上級才能創(chuàng)建默認(rèn)管理員。 |
|
String |
郵箱。 |
phone |
String |
手機號。 |
country |
String |
|
menuTemplateId |
String |
菜單模板id(預(yù)留接口)。 |
menuTemplateName |
String |
菜單模板名稱(預(yù)留接口)。 |
dept |
部門基本信息。 |
POST /rest/usg/datacenter/v1/corp/admin/search Connection: keep-alive Authorization: Basic dVZ5cDdBZG5xdzNlOWRqVUo1ckMyZFptaDZDSzhPYWlQ content-type: application/json user-agent: WeLink-desktop Content-Length: 40 Host: api.meeting.huaweicloud.com User-Agent: Apache-HttpClient/4.5.3 (Java/1.8.0_191) { "pageIndex": 1, "pageSize": 5 }
HTTP/1.1 200 Date: Fri, 12 Apr 2019 07:09:51 GMT Content-Type: application/json;charset=UTF-8 Connection: keep-alive Pragma: No-cache Cache-Control: no-cache Server: api-gateway X-Request-Id: efd3e53b2d9fa554d11267d5d66ca0bf { "returnCode": "000000000", "returnMessage": "Success", "achievementTime": "2019-04-12 07:09:51.673", "requestId": "bddf2f51e75986ad2ab6d9650ff108aa", "data": { "pageIndex": 1, "totalCount": 2, "pageSize": 5, "data": [{ "id": "ff80808169e79714016a0f59faf30088", "account": "user001", "name": "user001", "adminType": 1, "email": "user001@huawei.com", "phone": "+86133********", "country": "chinaPR", "menuTemplateId": "2", "menuTemplateName": "2", "dept": { "deptCode": "1", "corpId": "30574", "deptName": "test001", "deptNamePath": "test001", "parentDeptCode": null } }, { "id": "ff80808169e79714016a0b6bf0d9005d", "account": "test002@corpnew", "name": "test002", "adminType": 0, "email": "test002@huawei.com", "phone": "+86133********", "country": "chinaPR", "menuTemplateId": null, "menuTemplateName": null, "dept": { "deptCode": "1", "corpId": "30574", "deptName": "test001", "deptNamePath": "test001", "parentDeptCode": null } }] } }
curl -k -i -H 'content-type: application/json' -X POST -H 'Authorization: Basic VUVwVU82SWFISU0ySWlKaEdoRllRUXk0MUZnbk00Mkpk' -d '{"pageIndex": 1,"pageSize": 5}' https://api.meeting.huaweicloud.com/rest/usg/datacenter/v1/corp/admin/search