Backups
Delete backup series
Delete an entire backup series — every restore point that the given backup belongs to. The series is identified by passing the UUID of any backup row in it; all sibling restore points (and the underlying storage) are removed in one call.
Use this when a single restore point can't be removed on its own because it has older restore points it depends on. The single-backup Delete backup endpoint returns a clear error in that case and points here.
delete/api/v1/backups/{id}/chain
Path parameters
idstring uuid required
UUID of any backup row in the series to remove.
Headers
X-Project-IDstring uuid required
Project ID. Required for all mutating operations (create, delete, power actions, resize).
Response
Backup series deleted
Example response
{
"success": true,
"message": "Operation completed successfully"
}