Skip to main content
DELETE
/
v3
/
db
/
delete
/
{id}
Delete Database
curl --request DELETE \
  --url https://api.dscloud.pt/v3/db/delete/{id} \
  --header 'Authorization: <authorization>'
{
  "status": "success",
  "response": {
    "id": "003dd41a",
    "deleted_at": "2025-01-28T15:30:00Z"
  }
}
Danger Zone - This action permanently removes all database data and cannot be undone. Ensure you have proper backups before proceeding.
Authorization
string
required
The API key for your account. You can find this in your account settings.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
array
Confirmation of the deletion operation.
{
  "status": "success",
  "response": {
    "id": "003dd41a",
    "deleted_at": "2025-01-28T15:30:00Z"
  }
}