## Retrieve Policy `gpu_droplets.backups.retrieve_policy(intdroplet_id) -> BackupRetrievePolicyResponse` **get** `/v2/droplets/{droplet_id}/backups/policy` To show information about an individual Droplet's backup policy, send a GET request to `/v2/droplets/$DROPLET_ID/backups/policy`. ### Parameters - **droplet\_id:** `int` ### Returns - `class BackupRetrievePolicyResponse` - **policy:** `Optional[Policy]` - **backup\_enabled:** `Optional[bool]` A boolean value indicating whether backups are enabled for the Droplet. - **backup\_policy:** `Optional[DropletBackupPolicy]` An object specifying the backup policy for the Droplet. - **droplet\_id:** `Optional[int]` The unique identifier for the Droplet. - **next\_backup\_window:** `Optional[DropletNextBackupWindow]` An object containing keys with the start and end times of the window during which the backup will occur. ### Example ```python from do_gradientai import GradientAI client = GradientAI() response = client.gpu_droplets.backups.retrieve_policy( 1, ) print(response.policy) ```