跳到主要内容

查詢子賬號列表

描述

查詢子賬號列表

請求引數

引數名引數型別是否必填引數說明
ActionString操作方法:ListIamUsers,此引數為公共引數,不必放body裡面
PageNoInteger分頁頁數,最小值為1
PageSizeInteger分頁數量,最大值為100
UserNameString使用者名稱

返回引數

名稱型別說明
PagePage由Page組成的陣列格式,返回分頁資訊
ListList由List組成的陣列格式,返回雲手機列表資訊

Page

分頁資訊的資料型別

名稱型別說明
PageSizeInteger頁面總數
CurrentPageNoInteger當前分頁數
TotalPageInteger總頁數
TotalCountInteger總數

List

名稱型別說明
UserIdInteger使用者id
UserNameString使用者名稱
DisplayNameString姓名
CountryCodeString區號
MobilePhoneString手機號碼,帶區號
CloudPhoneGroupCountInteger授權的雲手機分組數量
CloudPhoneCountString授權的雲手機分組下的手機數量
GroupsInteger子使用者加入的分組數量
CommentsString備註
ConsoleLoginString是否開啟控制檯登入:Open,Closed,預設開啟
EmailString郵箱
CreateDateLong建立時間
UpdateDateLong更新時間

請求示例

post https://api.yunpanel.com/v2/?Action=ListIamUsers
{
"PageNo":1,
"PageSize": 10,
"UserName": "xxxxxx"
}

返回示例

{
"code": 10000,
"message": "",
"data": {
"Page": {
"PageSize": 10,
"CurrentPageNo": 1,
"TotalPage": 1,
"TotalCount": 3
},
"List": [{
"UserId": 1000,
"UserName": "test",
"DisplayName": "test",
"CountryCode": "86",
"MobilePhone": "+8615000000000",
"CloudPhoneCount": 1,
"CloudPhoneGroupCount": 1,
"Groups": 1,
"Comments": "test",
"ConsoleLogin": "Open",
"Email": "test@test.com",
"CreateDate": 1587467268000,
"UpdateDate": 1587467305000
}]
}
}