pydo.byoip_prefixes.list_resources()
Generated on 11 Jul 2025
from pydo
version
v0.13.0
Description
To list resources associated with BYOIP prefixes, send a GET request to /v2/byoip_prefixes/{byoip_prefix_uuid}/ips
.
A successful response will return a list of resources associated with the specified BYOIP prefix.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
byoip_prefix_uuid |
string | True | The unique identifier for the BYOIP Prefix. | |
per_page |
integer | False | Number of items returned per page | 20 |
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.byoip_prefixes.resources_list(byoip_prefix_uuid="fa3b-1234-5678-90ab-cdef01234567")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.