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' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "Maria Santos",
  "pronouns": "she/her",
  "notes": "History of generalized anxiety disorder. Currently on sertraline 50mg.",
  "consent": true
}
'
{
  "data": {
    "id": "481926357104938271",
    "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,
    "external_id": "PARTNER-12345"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.healos.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key obtained from /api/v1/ext-api-keys

Path Parameters

patientId
string
required

Patient ID

Example:

"481926357104938271"

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