Skip to main content
PATCH
/
patients
/
{patientId}
Update a patient
curl --request PATCH \
  --url https://api.healos.ai/ext-api/v1/patients/{patientId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Maria Santos",
  "pronouns": "she/her",
  "notes": "History of generalized anxiety disorder. Currently on sertraline 50mg.",
  "consent": true
}
'
{
  "data": {
    "id": "1743552000000",
    "name": "Maria Santos",
    "created_at": "2026-03-15T09:30:00.000Z",
    "pronouns": "she/her",
    "notes": "History of generalized anxiety disorder. Currently on sertraline 50mg.",
    "consent": true
  }
}

Path Parameters

patientId
string
required

Patient ID

Example:

"1743552000000"

Body

application/json
name
string

Patient name

Minimum string length: 1
Example:

"Maria Santos"

pronouns
string | null

Pronouns

Example:

"she/her"

notes
string | null

Clinical notes or context about this patient

Example:

"History of generalized anxiety disorder. Currently on sertraline 50mg."

Whether the patient has consented to treatment documentation

Example:

true

Response

Updated patient

data
object
required