PATCH
/
patients
/
{id}
curl --request PATCH \
  --url https://api.axlehealth.com/api/v2-stable/patients/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "first_name": "<string>",
  "last_name": "<string>",
  "dob": "2023-12-25",
  "sex": "M",
  "external_id": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "addresses": [
    {
      "line1": "<string>",
      "line2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "zip_code": "<string>"
    }
  ],
  "preferred_language": "<string>",
  "communication_settings": {
    "allows_automated_calls": true,
    "allows_clinician_calls": true,
    "allows_automated_sms": true,
    "allows_clinician_sms": true,
    "allows_automated_emails": true
  },
  "payers": [
    {
      "payer_id": "<string>"
    }
  ],
  "metadata": {}
}'
{}

Path Parameters

id
string
required

The UUID of the patient to retrieve.

Body

application/json

Response

200
application/json

Patient details retrieved successfully

The response is of type object.