> ## 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-prewarm.json DELETE /gpus/v2/prewarm-tasks
openapi: 3.0.0
info:
  title: PPIO GPU API v2
  version: 2.0.0
servers:
  - url: https://api.ppio.com
security: []
paths:
  /gpus/v2/prewarm-tasks:
    delete:
      summary: 批量删除镜像预热任务
      parameters:
        - name: Content-Type
          in: header
          required: true
          schema:
            type: string
          description: 枚举值:application/json。
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
          description: Bearer 身份验证格式，例如：Bearer `{{API 密钥}}`。
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - task_ids
              properties:
                task_ids:
                  type: array
                  items:
                    type: string
                  description: 待删除的镜像预热任务 ID 列表。
                  example:
                    - prewarm-task-a
                    - prewarm-task-b
      responses:
        '200':
          description: 删除成功
          content:
            application/json:
              schema:
                type: object

````