To retrieve a list of all actions that have been executed for a Droplet, send
a GET request to /v2/droplets/$DROPLET_ID/actions
.
The results will be returned as a JSON object with an actions
key. This will
be set to an array filled with action
objects containing the standard
action
attributes.
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
droplet_id |
integer | True | A unique identifier for a Droplet instance. | |
per_page |
integer | False | Number of items returned per page | 20 |
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
req = {
"name": "blog",
"type": "CNAME"
}
resp = client.droplet_actions.list(droplet_id=3164494)
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.