v2

latestOpenAPI 3.0.32026-08-07222102695.9 KB
Treatment Note

List treatment notes for patient

get/patients/{patient_id}/treatment_notes

Path parameters

patient_idstring int64 required

Query parameters

pageinteger
per_pageinteger
sortstring[]

Comma separated search fields. See: Ordering

[
  "created_at:desc"
]
order'asc' | 'desc'
q[]string[]

Filter result by one or more fields.

See Filtering Results

Available filters:

ValueFormat
archived_atdate-time
attendee_idint64
booking_idint64
created_atdate-time
deleted_atdate-time
draftboolean
idint64
practitioner_idint64
treatment_note_template_idint64
updated_atdate-time

Response

successful operation

total_entriesinteger

Example response

{
  "treatment_notes": [
    {
      "attendee": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/attendees/1"
        }
      },
      "booking": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/bookings/1"
        }
      },
      "content": {
        "sections": [
          {
            "questions": [
              {
                "body_chart_ids": [
                  "1"
                ]
              }
            ]
          }
        ]
      },
      "links": {
        "self": "https://api.au1.cliniko.com/v1/treatment_notes/1"
      },
      "patient": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/patients/1"
        }
      },
      "practitioner": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/practitioners/1"
        }
      },
      "treatment_note_template": {
        "links": {
          "self": "https://api.au1.cliniko.com/v1/treatment_note_templates/1"
        }
      }
    }
  ],
  "total_entries": 1,
  "links": {
    "self": "https://api.au1.cliniko.com/v1/patients/1/treatment_notes?page=2",
    "previous": "https://api.au1.cliniko.com/v1/patients/1/treatment_notes?page=1",
    "next": "https://api.au1.cliniko.com/v1/patients/1/treatment_notes?page=3"
  }
}