Awell Health Developer Hub
Developer Hub

Request

Query

  • graphql
01query GetPatient($patient_id: String!) {
02 patient(id: $patient_id) {
03 patient {
04 id
05 profile {
06 name
07 first_name
08 last_name
09 preferred_language
10 birth_date
11 sex
12 patient_code
13 address {
14 city
15 country
16 state
17 street
18 zip
19 }
20 email
21 national_registry_number
22 mobile_phone
23 phone
24 }
25 }
26 }
27}

Variables

  • json
01{
02 "patient_id": "{{PATIENT_ID}}"
03}

How to use