> ## 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 /consultation_schedule_notifications



## OpenAPI

````yaml /openapi/nimbo_api.yml get /consultation_schedule_notifications
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:
  /consultation_schedule_notifications:
    get:
      tags:
        - Consultation Schedules
      summary: GET /consultation_schedule_notifications
      operationId: legacy_nimbo_api_get__consultation_schedule_notifications
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                consultation_request:
                  type: object
                  properties:
                    cause:
                      type: string
                    starts_at:
                      type: string
                      format: date-time
                    ends_at:
                      type: string
                      format: date-time
                    confirmed_at:
                      type: string
                      format: date-time
                    reminder:
                      type: boolean
                    sms_reminder:
                      type: boolean
                    schedule_type:
                      type: string
                    overlaps_with:
                      type: integer
                    price:
                      type: integer
                    account_confirmed:
                      type: boolean
                    person_id:
                      type: integer
                    account_id:
                      type: integer
      responses:
        '200':
          description: Successful response

````