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": "john.doe@gmail.com",
  "phone_number": "5555555555",
  "next_appt_date": null,
  "user_group": {
    "id": "29657",
    "name": "California"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

patientId
string
required

The id of the patient in question

Example:

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

Response

200
application/json

Successful response

The response is of type object.