## Retrieve `gpu_droplets.actions.retrieve(intaction_id, ActionRetrieveParams**kwargs) -> ActionRetrieveResponse` **get** `/v2/droplets/{droplet_id}/actions/{action_id}` To retrieve a Droplet action, send a GET request to `/v2/droplets/$DROPLET_ID/actions/$ACTION_ID`. The response will be a JSON object with a key called `action`. The value will be a Droplet action object. ### Parameters - **droplet\_id:** `int` - **action\_id:** `int` ### Returns - `class ActionRetrieveResponse` - **action:** `Optional[Action]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() action = client.gpu_droplets.actions.retrieve( action_id=36804636, droplet_id=3164444, ) print(action.action) ```