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

# GET /waiting_rooms/waiting_room_slug



## OpenAPI

````yaml /openapi/nimbo_api.yml get /waiting_rooms/waiting_room_slug
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/waiting_room_slug:
    get:
      tags:
        - Teleconsultation Waiting Room
      summary: GET /waiting_rooms/waiting_room_slug
      operationId: legacy_nimbo_api_get__waiting_rooms_waiting_room_slug
      parameters:
        - name: slug
          in: query
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  waiting_room:
                    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
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                      selected_accounts:
                        type: array
                        items:
                          type: integer
          description: Successful response

````