Modifying IAM User Information (By the Administrator) (Recommended)
Function
This API is provided for the administrator to modify IAM user information.
The API can be called using either a global endpoint or a region-specific endpoint.
URI
PUT /v3.0/OS-USER/users/{user_id}
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
user_id |
Yes |
String |
IAM user ID. For details about how to obtain a user ID, see Obtaining Account, IAM User, Group, Project, Region, and Agency Information. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
Content-Type |
Yes |
String |
Set this parameter to application/json;charset=utf8. |
|
X-Auth-Token |
Yes |
String |
Token with Security Administrator permissions. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
Yes |
Object |
IAM user information. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
name |
No |
String |
New IAM username, which consists of 1 to 32 characters. It can contain letters (case-sensitive), digits, spaces, hyphens (-), underscores (_), and periods (.), and cannot start with a digit or space. |
|
password |
No |
String |
New password of the user. The password must meet the following requirements:
|
|
|
No |
String |
New email address with a maximum of 255 characters. |
|
areacode |
No |
String |
Country code. The country code must be used together with a mobile number. |
|
phone |
No |
String |
Mobile number with a maximum of 32 digits. The mobile number must be used together with a country code. |
|
enabled |
No |
Boolean |
Enabling status of the IAM user. true (default value) indicates that the user is enabled. false indicates that the user is disabled. |
|
pwd_status |
No |
Boolean |
Password status. true indicates that the password needs to be changed, and false indicates that the password is normal. If no password is set, this parameter may not be returned. |
|
xuser_type |
No |
String |
Type of the IAM user in the external system. The user type can contain a maximum of 64 characters. xuser_type must be used together with xuser_id and will be verified based on xaccount_type and xdomain_type of the same account.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. If the type is not customized, set this parameter to TenantIdp. |
|
xuser_id |
No |
String |
ID of the IAM user in the external system. The user ID can contain a maximum of 128 characters, and must be used together with xuser_type. Due to the latency, the IAM console may not be able to display the external identity ID you have set in real time. Refresh the page later.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. |
|
access_mode |
No |
String |
Access type of the IAM user.
|
|
description |
No |
String |
Description of the IAM user. |
Response Parameters
|
Parameter |
Type |
Description |
|---|---|---|
|
Object |
IAM user information. |
|
Parameter |
Type |
Description |
|---|---|---|
|
pwd_status |
Boolean |
Password status. true indicates that the password needs to be changed, and false indicates that the password is normal. If no password is set, this parameter may not be returned. |
|
create_time |
String |
Time when the IAM user was created.
NOTE:
The value is a UTC time in the YYYY-MM-DDTHH:mm:ss.ssssss format, for example, 2023-06-28T08:56:33.710000. |
|
xdomain_id |
String |
ID of the IAM user in the external system.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. |
|
xdomain_type |
String |
Type of the IAM user in the external system.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. |
|
is_domain_owner |
Boolean |
Indicates whether the IAM user is an administrator. |
|
xuser_id |
String |
ID of the IAM user in the external system.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. |
|
xuser_type |
String |
Type of the IAM user in the external system.
NOTE:
An external system refers to an enterprise management system connected to Huawei Cloud. Parameters xaccount_type, xaccount_id, xdomain_type, xdomain_id, xuser_type, and xuser_id cannot be obtained from Huawei Cloud. Please contact your enterprise administrator. |
|
access_mode |
String |
Access type of the IAM user.
|
|
description |
String |
Description of the IAM user. |
|
name |
String |
New IAM username, which consists of 1 to 32 characters. It can contain letters (case-sensitive), digits, spaces, hyphens (-), underscores (_), and periods (.), and cannot start with a digit or space. |
|
phone |
String |
Mobile number with a maximum of 32 digits. The mobile number must be used together with a country code. |
|
domain_id |
String |
ID of the account used to create the IAM user. |
|
enabled |
Boolean |
Enabling status of the IAM user. true (default value) indicates that the user is enabled. false indicates that the user is disabled. |
|
areacode |
String |
Country code. |
|
|
String |
New email address. |
|
id |
String |
IAM user ID. |
|
Object |
IAM user resource link information. |
|
|
password_expires_at |
String |
Password expiration time. This parameter will not be returned if its value is null.
NOTE:
The value is a UTC time in the YYYY-MM-DDTHH:mm:ss.ssssss format, for example, 2023-06-28T08:56:33.710000. |
Example Request
Request for an administrator to modify information of an IAM user named IAMUser: change the email address to IAMEmail@huawei.com, mobile number to 12345678910, and password to IAMPassword@
PUT https://iam.myhuaweicloud.eu/v3.0/OS-USER/users/{user_id}
{
"user": {
"email": "IAMEmail@huawei.com",
"areacode": "",
"phone": "12345678910",
"enabled": true,
"name": "IAMUser",
"password": "IAMPassword@",
"pwd_status": false,
"xuser_type": "",
"xuser_id": "",
"access_mode" : "default",
"description": "IAMDescription"
}
}
Example Response
Status code: 200
The request is successful.
{
"user": {
"description": "IAMDescription",
"areacode": "",
"enabled": true,
"pwd_status": false,
"xuser_id": "",
"access_mode" : "default",
"domain_id": "d78cbac186b744899480f25bd0...",
"phone": "12345678910",
"name": "IAMUser",
"links": {
"self": "https://iam.myhuaweicloud.eu/3.0/OS-USER/users/076934ff9f0010cd1f0bc003..."
},
"id": "076934ff9f0010cd1f0bc0031019...",
"xuser_type": "",
"email": "IAMEmail@huawei.com",
"create_time": "2024-03-28T03:42:08.000000",
"is_domain_owner": false,
"xdomain_id": "30086000630940966",
"xdomain_type": ""
}
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
The request is successful. |
|
400 |
Invalid parameters. |
|
401 |
Authentication failed. |
|
403 |
Access denied. |
|
404 |
The requested resource cannot be found. |
|
405 |
The method specified in the request is not allowed for the requested resource. |
|
409 |
A resource conflict occurs. |
|
413 |
The request entity is too large. |
|
500 |
Internal server error. |
|
503 |
Service unavailable. |
Error Codes
For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.