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

# Delete Job

> Soft deletes a job so it will no longer be scheduled or returned in normal job listings.



## OpenAPI

````yaml /openapi.json delete /jobs/{id}
openapi: 3.0.3
info:
  title: QuedUp API
  description: Development documentation
  version: 0.1.0
servers:
  - url: https://api.quedup.dev
    description: Production API
security: []
tags:
  - name: Jobs
    description: Job management endpoints.
paths:
  /jobs/{id}:
    delete:
      tags:
        - Jobs
      summary: Delete Job
      description: >-
        Soft deletes a job so it will no longer be scheduled or returned in
        normal job listings.
      operationId: deleteJobsById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            description: Unique identifier of the job.
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '204':
          description: Response for status 204
        '404':
          description: Standard error payload returned when a request cannot be completed.
          content:
            application/json:
              schema:
                example:
                  error: invalid_request
                  message: url must be a valid http(s) URL
                  field: url
                type: object
                required:
                  - error
                  - message
                properties:
                  error:
                    description: Stable machine-readable error code.
                    example: invalid_request
                    type: string
                  message:
                    description: Human-readable explanation of the error.
                    example: url must be a valid http(s) URL
                    type: string
                  field:
                    description: >-
                      Request field associated with the validation error, when
                      applicable.
                    example: url
                    type: string
        '500':
          description: Standard error payload returned when a request cannot be completed.
          content:
            application/json:
              schema:
                example:
                  error: invalid_request
                  message: url must be a valid http(s) URL
                  field: url
                type: object
                required:
                  - error
                  - message
                properties:
                  error:
                    description: Stable machine-readable error code.
                    example: invalid_request
                    type: string
                  message:
                    description: Human-readable explanation of the error.
                    example: url must be a valid http(s) URL
                    type: string
                  field:
                    description: >-
                      Request field associated with the validation error, when
                      applicable.
                    example: url
                    type: string
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: >-
        Provide your QuedUp API key in the Authorization header as `Bearer
        <api_key>`.

````