To show information about a reserved IP, send a GET request to /v2/reserved_ips/$RESERVED_IP_ADDR
.
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
reserved_ip |
string | True | A reserved IP address. |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.reserved_ips.get(reserved_ip="45.55.96.47")
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.