pydo.actions.get()
Generated on 12 Jan 2026
from pydo version
v0.23.0
Description
To retrieve a specific action object, send a GET request to /v2/actions/$ACTION_ID.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
action_id |
integer | True | A unique numeric ID that can be used to identify and reference an action. |
Request Sample
import os
from pydo import Client
client = Client(token=os.getenv("$DIGITALOCEAN_TOKEN"))
get_resp = client.actions.get(action_id=36804636)More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.