## Delete `gpu_droplets.images.delete(intimage_id)` **delete** `/v2/images/{image_id}` To delete a snapshot or custom image, send a `DELETE` request to `/v2/images/$IMAGE_ID`. ### Parameters - **image\_id:** `int` ### Example ```python from do_gradientai import GradientAI client = GradientAI() client.gpu_droplets.images.delete( 0, ) ```