---
title: pydo.reserved_ips.delete()
description: Delete a Reserved IP
product: Reference
url: https://docs.digitalocean.com/reference/pydo/reference/reserved_ips/delete/
last_updated: "2026-08-03"
---

> **For AI agents:** The documentation index is at [https://docs.digitalocean.com/llms.txt](https://docs.digitalocean.com/llms.txt). Markdown versions of pages use the same URL with `index.html.md` in place of the HTML page (for example, append `index.html.md` to the directory path instead of opening the HTML document).

# pydo.reserved_ips.delete()

Generated on 3 Aug 2026 from `pydo` version [`v0.40.0`](https://github.com/digitalocean/pydo/releases/tag/v0.40.0v0.40.0)

## Usage

```python
client.reserved_ips.delete(reserved_ip="45.55.96.47")
```

Returns `None`Raises `HttpResponseError`

## Description

To delete a reserved IP and remove it from your account, send a DELETE request to [`/v2/reserved_ips/{reserved_ip}`](https://docs.digitalocean.com/reference/api/reference/reserved-ips/index.html.md).

A successful request will receive a 204 status code with no body in response. This indicates that the request was processed successfully.

## Parameters

`reserved_ip` string required

A reserved IP address.

Min: `1`

## Request Sample

## Show Request Sample

```python
import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

resp = client.reserved_ips.delete(reserved_ip="45.55.96.47")
```

## More Information

See [`/v2/reserved_ips/{reserved_ip}`](https://docs.digitalocean.com/reference/api/reference/reserved-ips/index.html.md#reservedIPs_delete) in the API reference for additional detail on responses, headers, parameters, and more.