pydo.projects.list_resources_default()
Generated on 11 Jul 2025
from pydo
version
v0.13.0
Description
To list all your resources in your default project, send a GET request to /v2/projects/default/resources
.
Only resources that you are authorized to see will be returned. For example, to see Droplets in a project, include the droplet:read
scope.
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.projects.list_resources_default()
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.