Skip to main content
Use this endpoint to permanently delete a managed database from your Virtus Cloud account. All data, snapshots linked to the instance, and configuration are removed and cannot be recovered. Consider taking a snapshot before deleting if you need to preserve the data.

Request

DELETE https://api.virtuscloud.app/v2/databases/{databaseId}

Headers

Authorization
string
required
Your Virtus Cloud API key. Pass it directly as the header value — no prefix required.Example: Authorization: vc_live_xxxxxxxxxxxx

Path Parameters

databaseId
string
required
The unique identifier of the database you want to permanently delete.

Response

status
string
Returns "success" when the database has been successfully deleted.
This action is irreversible. Deleting a database permanently destroys all stored data. Take a snapshot before proceeding if you may need the data in the future.

Examples

curl -X DELETE https://api.virtuscloud.app/v2/databases/a14b8d5e1cb7405a851eb4c075506121 \
  -H "Authorization: <api_key>"

Response Example

{
  "status": "success"
}