> ## Documentation Index
> Fetch the complete documentation index at: https://ppio.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 删除镜像



## OpenAPI

````yaml gpus/v2-spec/delete-image.json DELETE /gpus/v2/images/{image_id}
openapi: 3.0.0
info:
  title: PPIO GPU API v2
  version: 2.0.0
servers:
  - url: https://api.ppio.com
security: []
paths:
  /gpus/v2/images/{image_id}:
    delete:
      summary: 删除镜像
      parameters:
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
          description: Bearer 身份验证格式，例如：Bearer `{{API 密钥}}`。
        - name: image_id
          in: path
          required: true
          schema:
            type: string
          description: 镜像 ID。字符串,长度限制:1-255 字符。
      responses:
        '200':
          description: 删除成功
          content:
            application/json:
              schema:
                type: object

````