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

# List waiting rooms

> List teleconsultation waiting rooms.



## OpenAPI

````yaml openapi/nimbo_api.yml GET /waiting_rooms
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /waiting_rooms:
    get:
      tags:
        - Teleconsultation Waiting Room
      summary: GET /waiting_rooms
      operationId: legacy_nimbo_api_get__waiting_rooms
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  waiting_rooms:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        organization_id:
                          type: integer
                        name:
                          type: string
                        slug:
                          type: string
                        schedule_configuration:
                          type: object
                          properties:
                            schedule:
                              type: object
                              properties:
                                fri:
                                  type: array
                                  items:
                                    type: string
                                    format: style
                                mon:
                                  type: array
                                  items:
                                    type: string
                                sat:
                                  type: array
                                  items:
                                    type: string
                                    format: style
                                sun:
                                  type: array
                                  items:
                                    type: string
                                thu:
                                  type: array
                                  items:
                                    type: string
                                    format: style
                                tue:
                                  type: array
                                  items:
                                    type: string
                                wed:
                                  type: array
                                  items:
                                    type: string
                                    format: style
                                weeks_limit:
                                  type: object
                                  properties:
                                    id:
                                      type: integer
                                    time:
                                      type: integer
                                    interval:
                                      type: string
                                consultation_duration:
                                  type: integer
                            timezone:
                              type: string
                        waiting_room_configuration:
                          type: object
                          properties:
                            allow_guest:
                              type: boolean
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        selected_accounts:
                          type: array
                          items:
                            type: integer
          description: Successful response

````