> ## 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 /consultations/{consultation_id}



## OpenAPI

````yaml /openapi/nimbo_erp.yml get /consultations/{consultation_id}
openapi: 3.0.0
info:
  title: Nimbo ERP
  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:
  - BearerAuth: []
paths:
  /consultations/{consultation_id}:
    get:
      summary: GET /consultations/{consultation_id}
      operationId: legacy_nimbo_erp_get__consultations_consultation_id
      parameters:
        - name: consultation_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  consultation:
                    type: object
                    properties:
                      id:
                        type: integer
                      cause:
                        type: string
                      created_at:
                        type: string
                        format: date-time
                      links:
                        type: object
                        properties:
                          person:
                            type: string
                          prescriptions:
                            type: string
                          encounter:
                            type: string
                          physical_test_samples:
                            type: string
                          consultation_diagnostics:
                            type: string
                          consultation_procedures:
                            type: string
                          consultation_lab_tests:
                            type: string
                          consultation_lab_test_result:
                            type: string
                          consultation_prescription_drugs:
                            type: string
                          consultation_schedule:
                            type: string
                          disability_leave:
                            type: string
                          invoice:
                            type: string
                          vital_signs_set:
                            type: string
                          odontogram:
                            type: string
                          medical_note:
                            type: string
                          physiotherapy_records:
                            type: string
                          medical_history_attachments:
                            type: string
                          location:
                            type: string
                          operating_room_requests:
                            type: string
                      medical_instructions:
                        type: string
                      physical_examination:
                        nullable: true
                      subjective_symptoms:
                        nullable: true
                      cause_extended:
                        nullable: true
                      account_id:
                        type: integer
                      finished_at:
                        nullable: true
                      encounter_id:
                        type: integer
                      treatment_plan:
                        nullable: true
                      starts_at:
                        type: string
                        format: date-time
                      sis:
                        type: object
                      lab_test:
                        type: object
                      procedure:
                        nullable: true
                      encode_id:
                        type: string
                      consultation_attributes:
                        type: object
                      account_medical_instructions:
                        nullable: true
                      cirrus_prescription_status:
                        nullable: true
          description: Successful response
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````