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



## OpenAPI

````yaml /openapi/nimbo_api.yml post /consultation_schedules
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_schedules:
    post:
      tags:
        - Schedules
      summary: POST /consultation_schedules
      operationId: legacy_nimbo_api_post__consultation_schedules
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                consultation_schedule:
                  type: object
                  properties:
                    cause:
                      type: string
                    starts_at:
                      type: string
                      format: date-time
                    ends_at:
                      type: string
                      format: date-time
                    reminder:
                      type: boolean
                    sms_reminder:
                      type: boolean
                    schedule_type:
                      type: string
                    price:
                      type: integer
                    metadata:
                      type: object
                      properties:
                        share_payment_link:
                          type: boolean
                        send_payment_link:
                          type: boolean
                    person_id:
                      type: string
                    account_id:
                      type: string
      responses:
        '201':
          content:
            application/json:
              schema:
                type: object
                properties:
                  consultation_schedule:
                    type: object
                    properties:
                      cause:
                        nullable: true
                      created_at:
                        type: string
                        format: date-time
                      ends_at:
                        type: string
                        format: date-time
                      id:
                        type: integer
                      links:
                        type: object
                        properties:
                          consultation:
                            nullable: true
                          encounter:
                            nullable: true
                          invoice:
                            nullable: true
                          person:
                            nullable: true
                      person_id:
                        nullable: true
                      starts_at:
                        type: string
                        format: date-time
                      confirmed_at:
                        nullable: true
                      schedule_type:
                        type: string
                      encounter_id:
                        nullable: true
                      blocked_cause:
                        type: string
                      account_id:
                        type: integer
                      telehealth_url:
                        nullable: true
                      price:
                        type: integer
                      arrival_at:
                        nullable: true
                      account_confirmed:
                        type: boolean
                      organization_schedule_id:
                        nullable: true
                      account_username:
                        type: string
                      status:
                        nullable: true
          description: Successful response

````