pydo.databases.update_user()
Generated on 2 Jul 2025
from pydo
version
v0.12.0
Description
To update an existing database user, send a PUT request to /v2/databases/$DATABASE_ID/users/$USERNAME
with the desired settings.
Note: only settings
can be updated via this type of request. If you wish to change the name of a user,
you must recreate a new user.
The response will be a JSON object with a key called user
. The value of this will be an
object that contains the name of the update database user, along with the settings
object that
has been updated.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
database_cluster_uuid |
string | True | A unique identifier for a database cluster. | |
username |
string | True | The name of the database user. | |
body |
JSON or IO[bytes] | True |
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.