> ## 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.

# 终止 Job



## OpenAPI

````yaml gpus/v2-spec/break-job.json POST /gpus/v2/jobs/{job_id}/stop
openapi: 3.0.0
info:
  title: PPIO GPU API v2
  version: 2.0.0
servers:
  - url: https://api.ppio.com
security: []
paths:
  /gpus/v2/jobs/{job_id}/stop:
    post:
      summary: 终止 Job
      parameters:
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
          description: Bearer 身份验证格式,例如:Bearer `{{API 密钥}}`。
        - name: job_id
          in: path
          required: true
          schema:
            type: string
          description: 任务 ID。字符串,长度限制:1-255 字符。
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object

````