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

# DELETE /consultation_schedules/{consultation_schedule_id}



## OpenAPI

````yaml /openapi/nimbo_api.yml delete /consultation_schedules/{consultation_schedule_id}
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/{consultation_schedule_id}:
    delete:
      tags:
        - Consultation Schedules
      summary: DELETE /consultation_schedules/{consultation_schedule_id}
      operationId: legacy_nimbo_api_delete__consultation_schedules_consultation_schedule_id
      parameters:
        - name: consultation_schedule_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          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
                      metadata:
                        type: object
                        properties:
                          send_payment_link:
                            type: boolean
          description: Successful response

````