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

# List Business Hours

> List business hours for a tenant with optional pagination, sorting, and search



## OpenAPI

````yaml https://api.voxo.co/v2/docs/openapi.json get /v2/admin/business-hours/
openapi: 3.1.0
info:
  title: VOXO API
  description: VOXO Communication Platform API
  version: 2.0.0
servers:
  - url: https://api.voxo.co
security:
  - bearerAuth: []
paths:
  /v2/admin/business-hours/:
    get:
      tags:
        - Business Hours
      summary: List Business Hours
      description: >-
        List business hours for a tenant with optional pagination, sorting, and
        search
      parameters:
        - schema:
            default: 1
            type: integer
            minimum: 0
            maximum: 1
          in: query
          name: paginated
          required: false
          description: 1 = paginated response, 0 = full list
        - schema:
            type: number
          in: query
          name: page
          required: false
          description: Page number
        - schema:
            type: number
          in: query
          name: recordsPerPage
          required: false
          description: Records per page
        - schema:
            type: string
            maxLength: 50
          in: query
          name: sortBy
          required: false
          description: Sort column
        - schema:
            type: string
            enum:
              - asc
              - desc
          in: query
          name: sortDirection
          required: false
          description: Sort direction
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: tenantId
          required: true
        - schema:
            type: string
            pattern: ^[1-9]\d*$
          in: query
          name: branchId
          required: false
        - schema:
            type: string
          in: query
          name: query
          required: false
          description: Search by name
      responses:
        '200':
          description: Paginated business hours
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Business hour ID
                        name:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Business hour name
                        tenantId:
                          type: number
                          description: Tenant ID
                        timezone:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: IANA timezone
                        branchId:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Branch ID (self-healed to default)
                        hours:
                          description: Weekly operating hours keyed by day (0-6)
                      required:
                        - id
                        - name
                        - tenantId
                        - timezone
                        - branchId
                        - hours
                      additionalProperties: false
                  page:
                    type: number
                  maxPage:
                    type: number
                  totalRecords:
                    type: number
                required:
                  - records
                  - page
                  - maxPage
                  - totalRecords
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````