新建子賬號
描述
新建子賬號
請求引數
引數名 | 引數型別 | 是否必填 | 引數說明 |
---|---|---|---|
Action | String | 是 | 操作方法:CreateIamUser,此引數為公共引數,不必放body裡面 |
UserName | String | 是 | 子賬號使用者名稱,使用者名稱格式:1-64個字元,由字母、數字組成,支援._@ |
DisplayName | String | 否 | 姓名,最大長度12 |
MobilePhone | String | 是 | 手機號碼 15000000000 僅支援中國號碼 |
Password | String | 是 | 密碼,base64加密 |
Comments | String | 否 | 備註,不超過128個字元 |
String | 否 | 郵箱,長度不超過32個字元 |
返回引數
名稱 | 型別 | 說明 |
---|---|---|
UserId | Integer | 使用者id |
UserName | String | 使用者名稱 |
DisplayName | String | 姓名 |
MobilePhone | String | 手機號碼,帶區號 |
String | 郵箱 | |
CreateDate | Long | 建立時間 |
請求示例
post https://api.yunpanel.com/v2/?Action=CreateIamUser
{
"UserName": "test",
"DisplayName": "test",
'"MobilePhone": "+8615000000000",
"Password":"XXX"
"Email": "test@test.com",
"Comments": "test"
}
返回示例
{
"code": 10000,
"message": "",
"data": {
"UserId": 1000,
"UserName": "test",
"DisplayName": "test",
"MobilePhone": "+8615000000000",
"Email": "test@test.com",
"CreateDate": 1587467268000
}
}