GET
/
patients
/
{id}
curl --request GET \
  --url https://api.axlehealth.com/api/v2-stable/patients/{id}
{
  "patient_id": "6f1a16a1-76a1-4818-871e-453242dd2e25",
  "external_id": null,
  "first_name": "John",
  "last_name": "Doe",
  "dob": "1988-05-03",
  "sex": "M",
  "email": "johndoe@example.com",
  "phone": "+17443879659",
  "addresses": [
    {
      "line1": "123 Main St",
      "line2": "",
      "city": "Los Angeles",
      "state": "CA",
      "zip_code": "81001"
    }
  ],
  "preferred_language": "en",
  "communication_settings": {
    "allows_automated_calls": false,
    "allows_clinician_calls": true,
    "allows_automated_sms": false,
    "allows_clinician_sms": true,
    "allows_automated_emails": false
  },
  "payers": [
    {
      "payer_id": "79b7c3c9-8e1a-44ec-94c4-f3b917eb5bb4",
      "code": "PAYER-1",
      "description": "Payer 1"
    }
  ],
  "metadata": {}
}

Path Parameters

id
string
required

The UUID of the patient to retrieve.

Response

200
application/json

Patient details retrieved successfully

The response is of type object.