Creates an account for a PolarDB-X instance.

Debugging

Alibaba Cloud provides OpenAPI Explorer to simplify API usage. OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.

Request parameters

Parameter Type Required Example Description
Action String Yes CreateAccount

The operation that you want to perform. Set the value to CreateAccount.

RegionId String Yes cn-hangzhou

The ID of the region where the PolarDB-X instance is deployed.

DBInstanceName String Yes pxc-**************

The name of the PolarDB-X instance.

AccountName String Yes testAccount

The username of the account.

AccountPassword String Yes Test@1111

The password of the account.

DBName String Yes testdb

The name of the database that can be accessed by using the account.

AccountPrivilege String Yes ReadWrite

The permissions on the database that is specified by the DBName parameter. Specify the type of permissions that you want to grant to the account that is created. Valid values:

  • ReadWrite
  • ReadOnly
  • DMLOnly
  • DDLOnly
AccountDescription String No test

The description of the account.

SecurityAccountName String No securityAccount

The username of the data security administrator (DSA) account.

Note If the three-role mode is enabled for the PolarDB-X instance, you must specify this parameter.
SecurityAccountPassword String No securityPassword

The password of the DSA account.

Note If the three-role mode is enabled for the PolarDB-X instance, you must specify this parameter.

Response parameters

Parameter Type Example Description
Message String ****

The message that is returned. If the request is successful, "success" is returned. If the request fails, an error code is returned.

RequestId String 9B2F3840-5C98-475C-B269-2D5C3A31797C

The ID of the request.

Success Boolean true

Indicates whether the request is successful.

Examples

Sample requests

http(s)://[Endpoint]/?Action=CreateAccount
&RegionId=cn-hangzhou
&DBInstanceName=pxc-**************
&AccountName=testAccount
&AccountPassword=Test@1111
&DBName=testdb
&AccountPrivilege=ReadWrite
&AccountDescription=test
&SecurityAccountName=securityAccount
&SecurityAccountPassword=securityPassword
&<Common request parameters>

Sample success responses

XML format

HTTP/1.1 200 OK
Content-Type:application/xml

<CreateAccountResponse>
    <Message>****</Message>
    <RequestId>9B2F3840-5C98-475C-B269-2D5C3A31797C</RequestId>
    <Success>true</Success>
</CreateAccountResponse>

JSON format

HTTP/1.1 200 OK
Content-Type:application/json

{
  "Message" : "****",
  "RequestId" : "9B2F3840-5C98-475C-B269-2D5C3A31797C",
  "Success" : true
}

Error codes

For a list of error codes, visit the API Error Center.