Skip to main content
GET
/
patient
/
{patientId}
/
pii
cURL
curl --request GET \
  --url https://om-staging.mylifeforce.com/api/m2m/patient/{patientId}/pii \
  --header 'Authorization: Bearer <token>'
{
  "id": "2222222",
  "first_name": "John",
  "last_name": "Doe",
  "dob": "1983-06-04",
  "gender": "Male",
  "email": "[email protected]",
  "phone_number": "5555555555",
  "user_group": {
    "id": "29657",
    "name": "California"
  },
  "next_appt_date": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

patientId
string<uuid>
required

The id of the patient in question A universally unique identifier.

Example:

"29ea9012-c622-4851-a57a-9327abd21198"

Response

Successful response

id
string
required

The unique identifier for the member.

Example:

"2222222"

first_name
string
required

The first name of the member.

Example:

"John"

last_name
string
required

The last name of the member.

Example:

"Doe"

dob
string<date>
required

The date of birth of the member.

Example:

"1983-06-04"

gender
string
required

The gender of the member.

Example:

"Male"

email
string<email>
required

The email address of the member.

phone_number
string
required

The phone number of the member.

Example:

"5555555555"

user_group
object
required

Information about the user group the member belongs to.

next_appt_date
string<date-time>

The date and time of the member's next appointment, or null if no appointment is scheduled.

Example:

null