pydo.reserved_ipv6.delete()
Generated on 1 May 2025
from pydo
version
v0.11.0
Description
To delete a reserved IP and remove it from your account, send a DELETE request
to /v2/reserved_ipv6/$RESERVED_IPV6
.
A successful request will receive a 204 status code with no body in response. This indicates that the request was processed successfully.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
reserved_ipv6 |
string | True | A reserved IPv6 address. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.reserved_ipv6s.delete(reserved_ipv6="2409:40d0:f7:1017:74b4:3a96:105e:4c6e")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.