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

> ## Agent Instructions
> Product noun is jobs.
> MCP at https://rest.hotfix.jobs/mcp is the hiring contract for agents with a company API key.
> Do not invent unpublished REST, hiring stats, or webhooks.
> Do not mention Greenhouse, Ashby, Quick Apply, or claim.
> Creating a draft, offer, or booking link does not send email.

# create_offer

> Create a pending offer and its magic link. Pay and start date are required. Does not email the applicant. MCP tool: create_offer. One active letter at a time. Accept moves them to Hired. Decline leaves them Interviewing. Not e-sign. A person still hits Send.



## OpenAPI

````yaml /openapi.json post /v1/employer/applications/{application_id}/offer
openapi: 3.1.0
info:
  title: Hotfix hiring API
  version: 1.0.0
  description: >-
    Employer hiring surface under /v1/employer. Most routes take an employer
    session Bearer token. GET resume also accepts a company API key (hf_…).
    Agents should prefer MCP at https://rest.hotfix.jobs/mcp with the same key.
    This is not the public catalog spec at hotfix.jobs/openapi.json, and it is
    not a dump of rest.hotfix.jobs/openapi.json.
servers:
  - url: https://rest.hotfix.jobs
    description: Production
security: []
tags:
  - name: Applications
  - name: Jobs
  - name: Interviews
  - name: Offers
  - name: Mail
  - name: Automations
paths:
  /v1/employer/applications/{application_id}/offer:
    post:
      tags:
        - Offers
      summary: create_offer
      description: >-
        Create a pending offer and its magic link. Pay and start date are
        required. Does not email the applicant. MCP tool: create_offer. One
        active letter at a time. Accept moves them to Hired. Decline leaves them
        Interviewing. Not e-sign. A person still hits Send.
      operationId: create_offer
      parameters:
        - name: application_id
          in: path
          required: true
          description: Application UUID.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                body_markdown:
                  type: string
                  description: Markdown letter.
                pay:
                  type: string
                  description: Pay as you want it printed on the letter.
                start_date:
                  type: string
                  description: Start date as you want it printed.
                notes:
                  type: string
                  description: Internal notes. Not on the letter.
                expires_on:
                  type: string
                  description: >-
                    Optional expiry. No default. Without a date the letter stays
                    open until Accept, Decline, or Rescind.
              required:
                - body_markdown
                - pay
                - start_date
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Employer session JWT from Better Auth.

````