PostgreSQL User V2

Operations related to managing Postgresql users

Update the default PostgreSQL user password.

SecurityBasic Authentication
Request
path Parameters
clusterId
required
string <uuid>

ID of the PostgreSQL cluster.

Request Body schema: application/json
password
required
string

Password of the default PostgreSQL user.

Responses
202

Default PostgreSQL user password updated.

404

PostgreSQL cluster not found.

503

Service Unavailable

504

Gateway Timeout

put/cluster-management/v2/operations/applications/postgresql/clusters/v2/{clusterId}/update-default-user-password
Request samples
application/json
{
  • "password": "!mypassword1"
}
Response samples
application/json
{
  • "password": "!mypassword1"
}