## List Policies `gpu_droplets.backups.list_policies(BackupListPoliciesParams**kwargs) -> BackupListPoliciesResponse` **get** `/v2/droplets/backups/policies` To list information about the backup policies for all Droplets in the account, send a GET request to `/v2/droplets/backups/policies`. ### Parameters - **page:** `int` Which 'page' of paginated results to return. - **per\_page:** `int` Number of items returned per page ### Returns - `class BackupListPoliciesResponse` - **meta:** `MetaProperties` Information about the response itself. - **links:** `Optional[PageLinks]` - **policies:** `Optional[Dict[str, Policies]]` A map where the keys are the Droplet IDs and the values are objects containing the backup policy information for each Droplet. - **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.list_policies() print(response.meta) ```