Skip to main content
DELETE
/
v1
/
workspaces
/
{org_id}
/
databases
/
{db_id}
Remove Database from Workspace
curl --request DELETE \
  --url https://api.vertracloud.app/v1/workspaces/{org_id}/databases/{db_id}
{}
org_id
string
required
The ID of the workspace to remove the database from.
db_id
string
required
The ID of the database to remove from the workspace.

Response

{}

Error Responses

code
string
The error code indicating the reason for failure. Possible values:
  • FORBIDDEN: The user is not authenticated or lacks sufficient permissions (requires owner or admin role).
  • DATABASE_NOT_FOUND: The specified database does not exist or the user is not the owner.
message
string
A descriptive message providing additional details about the error.
{
  "code": "FORBIDDEN"
}