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

# reschedule_interview

> Cancel a booked interview and open a new self-schedule link. Does not email the applicant. MCP tool: reschedule_interview.



## OpenAPI

````yaml /openapi.json post /v1/employer/applications/{application_id}/interview/{interview_id}/reschedule
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}/interview/{interview_id}/reschedule:
    post:
      tags:
        - Interviews
      summary: reschedule_interview
      description: >-
        Cancel a booked interview and open a new self-schedule link. Does not
        email the applicant. MCP tool: reschedule_interview.
      operationId: reschedule_interview
      parameters:
        - name: application_id
          in: path
          required: true
          description: Application UUID.
          schema:
            type: string
        - name: interview_id
          in: path
          required: true
          description: Interview UUID to cancel.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                host_user_id:
                  type: string
                  description: Calendar owner for the new link.
                duration_minutes:
                  type: integer
                  description: Length of the meeting.
                buffer_after_minutes:
                  type: integer
                  description: Gap after the meeting on the host calendar.
                start_hour:
                  type: integer
                  description: Local window start, 24-hour.
                end_hour:
                  type: integer
                  description: Local window end, 24-hour.
                notice_hours:
                  type: integer
                  description: Minimum notice before a bookable slot.
                window_days:
                  type: integer
                  description: How many days ahead to offer.
                stage:
                  type: string
                  description: >-
                    phone_screen, hiring_manager, technical, final, or
                    interview.
                note:
                  type: string
                  description: Private note on the link. Not shown to the applicant.
                conference:
                  type: string
                  description: meet, zoom, or phone. Phone is a hold with no video link.
              required:
                - host_user_id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
              example:
                pending:
                  id: b1c2d3e4-f5a6-7890-1234-56789abcdef0
                  status: pending
                  host_user_id: user_2abc
                  host_email: alex@acme.com
                  starts_at: null
                  ends_at: null
                  meet_url: null
                  booking_url: https://apply.hotfix.jobs/book/example
                  stage: Interview
                booked: null
                scheduled: []
                past: []
                hosts:
                  - user_id: user_2abc
                    email: alex@acme.com
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Employer session JWT from Better Auth.

````