v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-19273210655.1 KB
Databases

Update database user

Update a database user on the server.

Processing mode: <small><code>async</code></small>

put/orgs/{organization}/servers/{server}/database/users/{databaseUser}

Path parameters

organizationstring required

The organization slug

serverinteger required

The server ID

databaseUserinteger required

The database user ID

Request body

passwordstring nullable

The password for the database user.

database_idsinteger[]

The IDs of the databases to assign the user to.

Example request

{
  "password": "password",
  "database_ids": [
    1,
    2,
    3
  ]
}

Response

Accepted