pydo.databases.get_user()

Generated on 11 Jul 2025 from pydo version v0.13.0

Description

To show information about an existing database user, send a GET request to /v2/databases/$DATABASE_ID/users/$USERNAME.

Note: User management is not supported for Redis or Valkey clusters.

The response will be a JSON object with a user key. This will be set to an object containing the standard database user attributes. The user’s password will not show up unless the database:view_credentials scope is present.

For MySQL clusters, additional options will be contained in the mysql_settings object.

For Kafka clusters, additional options will be contained in the settings object.

For MongoDB clusters, additional information will be contained in the mongo_user_settings object

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.

Request Sample

import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

get_resp = client.databases.get_user(database_cluster_uuid="9a9aba", username="admin")

More Information

See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.

We can't find any results for your search.

Try using different keywords or simplifying your search terms.