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

# POST /telehealth_waiting_rooms



## OpenAPI

````yaml /openapi/nimbo_api.yml post /telehealth_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:
  /telehealth_waiting_rooms:
    post:
      tags:
        - Teleconsultation Waiting Room
      summary: POST /telehealth_waiting_rooms
      operationId: legacy_nimbo_api_post__telehealth_waiting_rooms
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                telehealth_waiting_room:
                  type: object
                  properties:
                    person:
                      type: object
                      properties:
                        waiting_room:
                          type: boolean
                        telephone2:
                          type: string
                        born_at:
                          type: string
                          format: date
                        first_name:
                          type: string
                        last_name:
                          type: string
                        gender:
                          type: string
                        email:
                          type: string
                          format: email
                        phone_country_id:
                          type: string
                          format: color
                        person_attributes:
                          type: object
                          properties:
                            is_under_age:
                              type: boolean
                    organization_id:
                      type: integer
                    cause:
                      type: string
                    waiting_room_id:
                      type: integer
                    custom_form_response:
                      type: object
                      properties:
                        respondable_type:
                          type: string
                        organization_id:
                          type: integer
                        responses:
                          type: object
                          properties:
                            cf_98_070e8aae224f:
                              type: object
                              properties:
                                id:
                                  type: integer
                                key:
                                  type: string
                                default_component:
                                  type: string
                                default_options:
                                  type: object
                                  properties:
                                    label:
                                      type: string
                                name:
                                  type: string
                                section_name:
                                  type: string
                                custom_form_id:
                                  type: integer
                                custom_field_id:
                                  type: integer
                                applicable_model:
                                  type: string
                                value:
                                  type: string
                                  format: color
                            cf_98_fe56b688854b:
                              type: object
                              properties:
                                id:
                                  type: integer
                                key:
                                  type: string
                                default_component:
                                  type: string
                                default_options:
                                  type: object
                                  properties:
                                    label:
                                      type: string
                                    options:
                                      type: array
                                      items:
                                        type: object
                                        properties:
                                          label:
                                            type: string
                                          value:
                                            type: string
                                name:
                                  type: string
                                section_name:
                                  type: string
                                custom_form_id:
                                  type: integer
                                custom_field_id:
                                  type: integer
                                applicable_model:
                                  type: string
                                value:
                                  type: string
                            cf_98_508008f65942:
                              type: object
                              properties:
                                id:
                                  type: integer
                                key:
                                  type: string
                                default_component:
                                  type: string
                                default_options:
                                  type: object
                                  properties:
                                    label:
                                      type: string
                                name:
                                  type: string
                                section_name:
                                  type: string
                                custom_form_id:
                                  type: integer
                                custom_field_id:
                                  type: integer
                                applicable_model:
                                  type: string
                                value:
                                  type: string
                                  format: date
      responses:
        '200':
          description: Successful response

````