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

# Get organization business hours configuration

> Returns the organization-wide business-hours schedule: timezone, weekly schedule, holidays, exceptional hours, and whether users may override at the user level. Admin/SuperAdmin can read; non-superadmins can only read their own org.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/organizations/{organizationId}/business-hours
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/organizations/{organizationId}/business-hours:
    get:
      tags:
        - Organizations
      summary: Get organization business hours configuration
      description: >-
        Returns the organization-wide business-hours schedule: timezone, weekly
        schedule, holidays, exceptional hours, and whether users may override at
        the user level. Admin/SuperAdmin can read; non-superadmins can only read
        their own org.
      operationId: get_organizations_organizationId_business_hours
      parameters:
        - in: path
          name: organizationId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Business hours returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgBusinessHoursResponse'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '404':
          description: Organization not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    OrgBusinessHoursResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          $ref: '#/components/schemas/OrgBusinessHoursData'
      additionalProperties: true
      example:
        success: true
        data:
          timezone: America/New_York
          businessHours:
            monday:
              enabled: true
              start: '09:00'
              end: '17:00'
          holidays:
            - date: '2026-12-25'
              label: Christmas Day
          exceptionalHours: []
          allowUserBusinessHoursOverride: false
    OrganizationErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: string
      additionalProperties: true
      example:
        error: Organization not found
        details: No organization exists with the provided id
    OrgBusinessHoursData:
      type: object
      properties:
        timezone:
          type: string
          nullable: true
        businessHours:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/OrgBusinessHoursSchedule'
        holidays:
          type: array
          items:
            $ref: '#/components/schemas/OrgBusinessHoursHoliday'
        exceptionalHours:
          type: array
          items:
            $ref: '#/components/schemas/OrgBusinessHoursException'
        allowUserBusinessHoursOverride:
          type: boolean
      additionalProperties: true
      example:
        timezone: America/New_York
        businessHours:
          monday:
            enabled: true
            start: '09:00'
            end: '17:00'
          friday:
            enabled: true
            start: '09:00'
            end: '15:00'
        holidays:
          - date: '2026-12-25'
            label: Christmas Day
        exceptionalHours:
          - date: '2026-12-24'
            closed: false
            start: '09:00'
            end: '13:00'
            label: Christmas Eve
        allowUserBusinessHoursOverride: false
    OrgBusinessHoursSchedule:
      type: object
      properties:
        monday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        tuesday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        wednesday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        thursday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        friday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        saturday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
        sunday:
          $ref: '#/components/schemas/OrgBusinessHoursDay'
      additionalProperties: false
      example:
        monday:
          enabled: true
          start: '09:00'
          end: '17:00'
        tuesday:
          enabled: true
          start: '09:00'
          end: '17:00'
        wednesday:
          enabled: true
          start: '09:00'
          end: '17:00'
        thursday:
          enabled: true
          start: '09:00'
          end: '17:00'
        friday:
          enabled: true
          start: '09:00'
          end: '17:00'
        saturday:
          enabled: false
          start: '09:00'
          end: '17:00'
        sunday:
          enabled: false
          start: '09:00'
          end: '17:00'
    OrgBusinessHoursHoliday:
      type: object
      properties:
        date:
          type: string
          description: YYYY-MM-DD
        label:
          type: string
      required:
        - date
      additionalProperties: true
      example:
        date: '2026-12-25'
        label: Christmas Day
    OrgBusinessHoursException:
      type: object
      properties:
        date:
          type: string
          description: YYYY-MM-DD
        closed:
          type: boolean
        start:
          type: string
          description: HH:mm when not closed
        end:
          type: string
          description: HH:mm when not closed
        label:
          type: string
      required:
        - date
      additionalProperties: true
      example:
        date: '2026-12-24'
        closed: false
        start: '09:00'
        end: '13:00'
        label: Christmas Eve early close
    OrgBusinessHoursDay:
      type: object
      properties:
        enabled:
          type: boolean
        start:
          type: string
          description: HH:mm 24h time
        end:
          type: string
          description: HH:mm 24h time
      required:
        - enabled
        - start
        - end
      additionalProperties: true
      example:
        enabled: true
        start: '09:00'
        end: '17:00'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````