Skip to main content
PATCH
/
rest
/
profile
/
patient
Update patient information
curl --request PATCH \
  --url https://mcp.arlohealth.ai/rest/profile/patient \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "patientId": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "displayName": "<string>",
  "birthDate": {
    "year": 123,
    "month": 123,
    "day": 123
  },
  "gender": "Female",
  "country": "CA",
  "province": "<string>",
  "phone": "<string>",
  "email": "jsmith@example.com",
  "address": "<string>",
  "city": "<string>",
  "zip": "<string>",
  "healthNumber": "<string>",
  "medications": [
    {
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "conditions": [
    {
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "allergies": [
    {
      "title": "<string>",
      "severity": "<string>"
    }
  ],
  "acceptTerms": true
}
'
{
  "patientId": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "displayName": "<string>",
  "gender": "Female",
  "phone": "<string>",
  "email": "jsmith@example.com",
  "birthDate": {
    "year": 123,
    "month": 123,
    "day": 123
  },
  "isDefault": true,
  "address": "<string>",
  "city": "<string>",
  "province": "<string>",
  "country": "CA",
  "zip": "<string>",
  "healthNumber": "<string>",
  "medications": [
    {
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "conditions": [
    {
      "title": "<string>",
      "description": "<string>"
    }
  ],
  "allergies": [
    {
      "title": "<string>",
      "severity": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE

Body

application/json
patientId
string

Patient ID to update (defaults to primary patient)

firstName
string
lastName
string
displayName
string
birthDate
object
gender
enum<string>
Available options:
Female,
Male,
Other
country
enum<string>
Available options:
CA,
US
province
string

Province/state code

phone
string
email
string<email>
address
string
city
string
zip
string
healthNumber
string
medications
object[]
conditions
object[]
allergies
object[]
acceptTerms
boolean

Set to true to complete onboarding

Response

Patient updated

patientId
string
firstName
string
lastName
string
displayName
string
gender
enum<string>
Available options:
Female,
Male,
Other
phone
string
email
string<email>
birthDate
object
isDefault
boolean
address
string
city
string
province
string

Province/state code (ON, BC, AB, etc.)

country
enum<string>
Available options:
CA,
US
zip
string
healthNumber
string
medications
object[]
conditions
object[]
allergies
object[]