# Delete Backup

> This endpoint deletes a backup of a Redis database.

## Endpoint

`DELETE https://api.upstash.com/v2/redis/delete-backup/{id}/{backup_id}`

## Parameters

- `id` (path, string, required): The ID of the Redis database
- `backup_id` (path, string, required): The ID of the backup to delete

## Responses

### 200 - Backup deleted successfully


## cURL

```bash
curl --request DELETE \
  --url https://api.upstash.com/v2/redis/delete-backup/{id}/{backup_id} \
  --header 'Authorization: Bearer <token>'
```
