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.
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. |
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")
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.