pydo.image_actions.list()
Generated on 12 Feb 2026
from pydo version
v0.26.0
Description
To retrieve all actions that have been executed on an image, send a GET request to /v2/images/$IMAGE_ID/actions.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
image_id |
integer | True | A unique number that can be used to identify and reference a specific image. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.image_actions.list(image_id=7938269)More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.