Creates user information.

Request information

Request line

PUT /users HTTP/1.1

Request line parameters

None.

Operation-specific request headers

None.

Request body

Request Body:

{
    "User": {
        "Password": "String" //This parameter is required.
    }
}

Request body parameters

Parameter Type Required Description
Password String Yes The user password. The password must be 8 to 32 characters in length, and must contain at least two of the following character types: letters, special characters, and digits.

Response information

Response line

HTTP/1.1 200 OK

Operation-specific response headers

None.

Response body

{
    "data": {},
    "requestId": "String"
}

Examples

Sample requests

PUT /users HTTP/1.1
<Common request headers>

{
    "User": {
        "Password": "sbG93JsZA36****"
    }
}

Sample responses

HTTP/1.1 200 OK
<Common response headers>

{
    "data": {},
    "requestId": "071CFEDB-E5A4-41BB-BB03-5DA0A59D3888"
}