All Products
Search
Document Center

:CreateUserInfo

Last Updated:Apr 24, 2026

Creates user information.

Request information

Request line

PUT /users HTTP/1.1

URI parameters

None.

Operation-specific request headers

None.

Request body

Request Body:

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

Request body parameters

ParameterTypeRequiredDescription
PasswordStringYesThe 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 request

PUT /users HTTP/1.1
<Common request headers>

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

Sample response

HTTP/1.1 200 OK
<Common response headers>

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