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

# Cancel an application

> COMING SOON: This operation is a contract preview and is not currently available.

Request cancellation of a queued, running, or awaiting_answers
application. Repeating the request after cancellation is safe. A
submitted or failed application cannot be canceled.




## OpenAPI

````yaml /openapi.yaml post /api/auto-apply/applications/{id}/cancel
openapi: 3.0.3
info:
  title: Jobo Enterprise API
  description: >
    The Jobo Enterprise API provides programmatic access to job listings,
    intelligent search,

    real-time feeds, geocoding services, and a contract preview for
    callback-driven

    job applications. Auto Apply is coming soon and is not available in beta or
    production.
  version: '2026-07-21'
  contact:
    name: Jobo Support
    url: https://jobo.world
    email: support@jobo.world
  license:
    name: Proprietary — see terms of service
    url: https://jobo.world/terms
  termsOfService: https://jobo.world/terms
servers:
  - url: https://connect.jobo.world
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Jobs Search
    description: Search and retrieve job listings
  - name: Jobs Feed
    description: Bulk job feeds and expiration tracking
  - name: Companies
    description: Company profiles and company-scoped job listings
  - name: Auto Apply Applications
    description: >-
      Coming soon: profileless applications answered through signed, typed HTTPS
      callbacks
  - name: Locations
    description: Geocoding and location services
paths:
  /api/auto-apply/applications/{id}/cancel:
    post:
      tags:
        - Auto Apply Applications
      summary: Cancel an application
      description: >
        COMING SOON: This operation is a contract preview and is not currently
        available.


        Request cancellation of a queued, running, or awaiting_answers

        application. Repeating the request after cancellation is safe. A

        submitted or failed application cannot be canceled.
      operationId: cancelAutoApplyApplication
      parameters:
        - name: id
          in: path
          required: true
          description: Application ID.
          schema:
            type: string
            format: uuid
      responses:
        '202':
          description: Cancellation accepted, or the application was already canceled.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutoApplyApplicationSummary'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Application not found or owned by another account.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '409':
          description: >-
            The application is already submitted or failed and cannot be
            canceled.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '503':
          description: Auto Apply management endpoints are temporarily unavailable.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    AutoApplyApplicationSummary:
      type: object
      required:
        - api_version
        - id
        - job_id
        - apply_url
        - provider_id
        - provider_name
        - status
        - cancel_requested
        - status_updated_at
        - queued_at
        - started_at
        - submitted_at
        - failed_at
        - canceled_at
        - completed_at
        - created_at
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        id:
          type: string
          format: uuid
          description: Stable application ID.
        job_id:
          type: string
          nullable: true
          description: Supplied Jobo job ID, or null when apply_url was supplied directly.
        apply_url:
          type: string
          format: uri
          description: Resolved application URL.
        provider_id:
          type: string
          description: Stable provider identifier selected at intake.
        provider_name:
          type: string
          description: Provider display name captured at intake.
        status:
          $ref: '#/components/schemas/AutoApplyApplicationStatus'
        cancel_requested:
          type: boolean
          description: Whether cancellation has been requested.
        status_updated_at:
          type: string
          format: date-time
        queued_at:
          type: string
          format: date-time
        started_at:
          type: string
          format: date-time
          nullable: true
        submitted_at:
          type: string
          format: date-time
          nullable: true
        failed_at:
          type: string
          format: date-time
          nullable: true
        canceled_at:
          type: string
          format: date-time
          nullable: true
        completed_at:
          type: string
          format: date-time
          nullable: true
          description: submitted_at, failed_at, or canceled_at, whichever is set.
        created_at:
          type: string
          format: date-time
    ProblemDetails:
      type: object
      description: Problem Details object returned for error responses.
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
        code:
          type: string
          nullable: true
          description: Stable machine-readable code for Auto Apply domain errors.
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
    AutoApplyApiVersion:
      type: string
      description: Version of the profileless Auto Apply API contract.
      enum:
        - '2026-07-21'
      example: '2026-07-21'
    AutoApplyApplicationStatus:
      type: string
      description: Current durable application state.
      enum:
        - queued
        - running
        - awaiting_answers
        - submitted
        - failed
        - canceled
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ProblemDetails'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````