pydo.databases.delete_user()
Generated on 16 Jun 2025
from pydo
version
v0.11.0
Description
To remove a specific database user, send a DELETE request to
/v2/databases/$DATABASE_ID/users/$USERNAME
.
A status of 204 will be given. This indicates that the request was processed successfully, but that no response body is needed.
Note: User management is not supported for Redis clusters.
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"))
delete_resp = client.databases.delete_user(database_cluster_uuid="aba134a", username="backend_user1")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.