## List `gpu_droplets.actions.list(intdroplet_id, ActionListParams**kwargs) -> ActionListResponse` **get** `/v2/droplets/{droplet_id}/actions` 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. ### Parameters - **droplet\_id:** `int` - **page:** `int` Which 'page' of paginated results to return. - **per\_page:** `int` Number of items returned per page ### Returns - `class ActionListResponse` - **meta:** `MetaProperties` Information about the response itself. - **actions:** `Optional[List[Action]]` - **id:** `Optional[int]` A unique numeric ID that can be used to identify and reference an action. - **completed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format that represents when the action was completed. - **region:** `Optional[Region]` - **region\_slug:** `Optional[str]` A human-readable string that is used as a unique identifier for each region. - **resource\_id:** `Optional[int]` A unique identifier for the resource that the action is associated with. - **resource\_type:** `Optional[str]` The type of resource that the action is associated with. - **started\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format that represents when the action was initiated. - **status:** `Optional[Literal["in-progress", "completed", "errored"]]` The current status of the action. This can be "in-progress", "completed", or "errored". - `"in-progress"` - `"completed"` - `"errored"` - **type:** `Optional[str]` This is the type of action that the object represents. For example, this could be "transfer" to represent the state of an image transfer action. - **links:** `Optional[PageLinks]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() actions = client.gpu_droplets.actions.list( droplet_id=3164444, ) print(actions.meta) ```