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

# Cancel Job

> Cancel a pending or processing job.



## OpenAPI

````yaml DELETE /v1/jobs/{id}
openapi: 3.0.3
info:
  title: MediAPI
  description: >-
    Media processing API — video, audio, image, and document transformations via
    simple REST calls.
  version: 1.0.0
servers:
  - url: https://api.ringbee.dev
    description: Production
security:
  - apiKey: []
paths:
  /v1/jobs/{id}:
    delete:
      tags:
        - Jobs
      summary: Cancel a job
      description: Cancel a pending or processing job.
      operationId: cancelJob
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Job cancelled
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  status:
                    type: string
                    example: cancelled
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````