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

# Get the org's outbound holiday calendar



## OpenAPI

````yaml /api-reference/openapi.json get /v1/voice/holiday-calendar
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/voice/holiday-calendar:
    get:
      tags:
        - voice
      summary: Get the org's outbound holiday calendar
      operationId: getHolidayCalendar
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HolidayCalendarSettings'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HolidayCalendarSettings:
      properties:
        enabled:
          type: boolean
          title: Enabled
          default: true
        holidays:
          items:
            $ref: '#/components/schemas/HolidayEntry'
          type: array
          title: Holidays
      type: object
      title: HolidayCalendarSettings
      description: >-
        Per-org outbound holiday calendar. Sub-gate of the calling window.


        Dates are interpreted in the calling window's timezone and only take
        effect

        while the calling window is enabled. Absent ⇒ DEFAULT_HOLIDAY_CALENDAR

        (enabled with an empty list ⇒ blocks nothing).
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
        retryable:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Retryable
        retry_after:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retry After
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HolidayEntry:
      properties:
        name:
          anyOf:
            - type: string
              maxLength: 100
            - type: 'null'
          title: Name
        start_date:
          type: string
          format: date
          title: Start Date
        end_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: End Date
        recurring:
          type: boolean
          title: Recurring
          default: false
      type: object
      required:
        - start_date
      title: HolidayEntry
      description: >-
        One holiday: a single day, a date range, or an annual recurrence.


        - Single day: ``start_date`` set, ``end_date`` None, ``recurring``
        False.

        - Multi-day range: ``start_date`` + ``end_date`` (both inclusive),
          ``recurring`` False.
        - Annually recurring: ``recurring`` True — only the ``(month, day)`` of
          ``start_date``..``end_date`` is matched, ignoring the year. A recurring
          range may wrap the year boundary (e.g. Dec 30 → Jan 2). A recurring
          Feb-29 entry only matches in leap years.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````