> ## 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}/physiotherapy_records



## OpenAPI

````yaml /openapi/nimbo_api.yml get /consultations/{consultation_id}/physiotherapy_records
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:
  /consultations/{consultation_id}/physiotherapy_records:
    get:
      tags:
        - Consultations
      summary: GET /consultations/{consultation_id}/physiotherapy_records
      operationId: >-
        legacy_nimbo_api_get__consultations_consultation_id_physiotherapy_records
      parameters:
        - name: consultation_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  physiotherapy_records:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        consultation_id:
                          type: integer
                        part_number:
                          type: integer
                        part_name:
                          type: string
                        side:
                          type: string
                        body_part_id:
                          type: integer
          description: Successful response

````