## List **get** `/v2/droplets/{droplet_id}/destroy_with_associated_resources` To list the associated billable resources that can be destroyed along with a Droplet, send a GET request to the `/v2/droplets/$DROPLET_ID/destroy_with_associated_resources` endpoint. This endpoint will only return resources that you are authorized to see. For example, to see associated Reserved IPs, include the `reserved_ip:read` scope. The response will be a JSON object containing `snapshots`, `volumes`, and `volume_snapshots` keys. Each will be set to an array of objects containing information about the associated resources. ### Returns - **floating\_ips:** `array of AssociatedResource` Floating IPs that are associated with this Droplet.
Requires `reserved_ip:read` scope. - **reserved\_ips:** `array of AssociatedResource` Reserved IPs that are associated with this Droplet.
Requires `reserved_ip:read` scope. - **snapshots:** `array of AssociatedResource` Snapshots that are associated with this Droplet.
Requires `image:read` scope. - **volume\_snapshots:** `array of AssociatedResource` Volume Snapshots that are associated with this Droplet.
Requires `block_storage_snapshot:read` scope. - **volumes:** `array of AssociatedResource` Volumes that are associated with this Droplet.
Requires `block_storage:read` scope.