Creating the Login Information of an IAM User
Function
This API is used to create the login information of a specified IAM user.
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the following required identity policy-based permissions. For details about the required permissions, see Permissions Policies and Supported Actions.
|
Action |
Access Level |
Resource Type (*: required) |
Condition Key |
Alias |
Dependencies |
|---|---|---|---|---|---|
|
iam:users:createLoginProfileV5 |
Write |
user * |
g:ResourceTag/<tag-key> |
- |
- |
URI
POST /v5/users/{user_id}/login-profile
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
user_id |
Yes |
String |
IAM user ID. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
password |
Yes |
String |
IAM user password. |
|
password_reset_required |
Yes |
Boolean |
Indicates whether an IAM user needs to change their password upon the next login. |
Response Parameters
Status code: 201
|
Parameter |
Type |
Description |
|---|---|---|
|
login_profile |
LoginProfile object |
IAM user login information. |
|
Parameter |
Type |
Description |
|---|---|---|
|
user_id |
String |
IAM user ID. |
|
password_reset_required |
Boolean |
Indicates whether an IAM user needs to change their password upon the next login. |
|
password_expires_at |
String |
Time when the password of an IAM user expires. |
|
created_at |
String |
Time when the IAM user login information was created. |
Status code: 400
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
Status code: 403
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
|
request_id |
String |
Request ID. |
|
encoded_authorization_message |
String |
Encrypted authentication failure information, which can be decrypted using the STS5 decryption API. |
Status code: 404
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
|
request_id |
String |
Request ID. |
Status code: 409
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code. |
|
error_msg |
String |
Error message. |
|
request_id |
String |
Request ID. |
Example Requests
Creating the login information of a specified IAM user. The password is set to Password0 and the user is asked to change the password upon the next login.
POST https://{endpoint}/v5/users/{user_id}/login-profile
{
"password" : "Password0",
"password_reset_required" : true
}
Example Responses
Status code: 201
Successful
{
"login_profile" : {
"user_id" : "user",
"password_reset_required" : true,
"password_expires_at" : "2023-09-13T08:03:10.781Z",
"created_at" : "2023-09-13T08:03:10.781Z"
}
}
Status Codes
|
Status Code |
Description |
|---|---|
|
201 |
Successful |
|
400 |
Bad request |
|
403 |
Forbidden |
|
404 |
Not found |
|
409 |
Conflict |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot