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

# Delete a mailbox

> Auto Apply is an invite-only beta.

Disconnects the mailbox and hard-deletes the stored credentials.




## OpenAPI

````yaml /openapi.yaml delete /api/auto-apply/mailboxes/{id}
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 callback-driven job applications.

    Auto Apply is an invite-only beta; accounts without access receive 403

    auto_apply_not_enabled from create.
  version: '2026-08-12'
  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
    description: Search and retrieve job listings
  - name: Feed
    description: Bulk job feeds and expiration tracking
  - name: Companies
    description: Company profiles and company-scoped job listings
  - name: Auto Apply
    description: >-
      Coming soon: profileless applications answered through signed, typed HTTPS
      callbacks
  - name: Locations
    description: Geocoding and location services
paths:
  /api/auto-apply/mailboxes/{id}:
    delete:
      tags:
        - Auto Apply
      summary: Delete a mailbox
      description: |
        Auto Apply is an invite-only beta.

        Disconnects the mailbox and hard-deletes the stored credentials.
      operationId: deleteAutoApplyMailbox
      parameters:
        - name: id
          in: path
          required: true
          description: Mailbox ID.
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: The mailbox and its credentials were deleted.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Mailbox not found or owned by another account.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      x-codeSamples:
        - lang: cURL
          source: >
            curl -X DELETE
            "https://connect.jobo.world/api/auto-apply/mailboxes/8b6c2f1a-1c9e-4b7f-9d2e-5a1b3c4d5e6f"
            \
              -H "X-Api-Key: $JOBO_API_KEY"
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ProblemDetails'
  schemas:
    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-08-12'
      example: '2026-08-12'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````