pydo.actions.list()
Generated on 11 Jul 2025
from pydo
version
v0.13.0
Description
This will be the entire list of actions taken on your account, so it will be quite large. As with any large collection returned by the API, the results will be paginated with only 20 on each page by default.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
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.getenv("$DIGITALOCEAN_TOKEN"))
list_resp = client.actions.list()
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.