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

# Get a mailbox

> Auto Apply is an invite-only beta.

Fetches one mailbox. While an outlook mailbox is pending consent the
response keeps carrying a fresh authorization_url.




## OpenAPI

````yaml /openapi.yaml get /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}:
    get:
      tags:
        - Auto Apply
      summary: Get a mailbox
      description: |
        Auto Apply is an invite-only beta.

        Fetches one mailbox. While an outlook mailbox is pending consent the
        response keeps carrying a fresh authorization_url.
      operationId: getAutoApplyMailbox
      parameters:
        - name: id
          in: path
          required: true
          description: Mailbox ID.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The mailbox.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Mailbox'
        '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
            "https://connect.jobo.world/api/auto-apply/mailboxes/8b6c2f1a-1c9e-4b7f-9d2e-5a1b3c4d5e6f"
            \
              -H "X-Api-Key: $JOBO_API_KEY"
components:
  schemas:
    Mailbox:
      type: object
      required:
        - api_version
        - id
        - provider
        - address
        - status
        - created_at
        - updated_at
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        id:
          type: string
          format: uuid
        provider:
          type: string
          enum:
            - imap
            - outlook
        address:
          type: string
          format: email
        status:
          type: string
          enum:
            - pending
            - connected
            - error
            - disabled
          description: >-
            pending = outlook mailbox awaiting consent; error = the last
            connectivity check failed (see last_error).
        imap_host:
          type: string
          nullable: true
        imap_port:
          type: integer
          nullable: true
        imap_security:
          type: string
          nullable: true
        username:
          type: string
          nullable: true
        authorization_url:
          type: string
          format: uri
          nullable: true
          description: >-
            Only on a pending outlook mailbox: open this URL (or send it to the
            mailbox owner) to grant consent via Microsoft.
        last_error:
          type: string
          nullable: true
        connected_at:
          type: string
          format: date-time
          nullable: true
        last_checked_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_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-08-12'
      example: '2026-08-12'
  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

````