Skip to main content
GET
/
patients
/
{id}
Get Patient
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<uuid>
required

The UUID of the patient to retrieve.

Response

Patient details retrieved successfully

patient_id
string<uuid>

UUID of the patient

external_id
string | null

Optional external identifier for the patient

first_name
string

First name of the patient (non-empty)

Minimum length: 1
last_name
string

Last name of the patient (non-empty)

Minimum length: 1
dob
string<date>

Date of birth of the patient

sex
enum<string>

Gender of the patient

Available options:
M,
F,
I,
U
phone
string | null

Optional phone number of the patient

email
string<email> | null

Optional email address of the patient

addresses
object[]
preferred_language
string

Preferred language of the patient

communication_settings
object

Optional settings for communication with patients

payers
object[]
metadata
object

Optional metadata related to the patient

I