v2

latestOpenAPI 3.0.32026-08-07222102695.9 KB
Treatment Note

Update treatment note

patch/treatment_notes/{id}

Path parameters

idstring int64 required

Request body

attendee_idstring int64

attendee id

booking_idstring int64

booking id

draftboolean
patient_idstring int64

patient id

titlestring
treatment_note_template_idstring int64

treatment note template id

Example request

{
  "attendee_id": "1",
  "booking_id": "1",
  "content": {
    "sections": [
      {
        "questions": [
          {
            "body_chart_ids": [
              "1"
            ]
          }
        ]
      }
    ]
  },
  "patient_id": "1",
  "treatment_note_template_id": "1"
}

Response

Resource was updated

archived_atstring date-time nullable
author_namestring nullable
created_atstring date-time
deleted_atstring date-time nullable
draftboolean
finalized_atstring date-time nullable
idstring int64
pinned_atstring date-time nullable
titlestring
updated_atstring date-time

Example response

{
  "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"
    }
  }
}