Skip to main content
GET
/
patient
/
{patientId}
/
member-overview
cURL
curl --request GET \
  --url https://om-staging.mylifeforce.com/api/m2m/patient/{patientId}/member-overview \
  --header 'Authorization: Bearer <token>'
{
  "healthieUserId": "2222222",
  "isMember": true,
  "latestClinician": "Renae Thomas, MD, MPH",
  "latestDiagnosticAt": "2022-04-18T09:46:00Z",
  "latestHealthCoach": "Vinnie Antonelli-Galizio",
  "membershipType": "classic",
  "memberSince": "2022-04-18T09:46:00Z",
  "healthTrack": 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

healthieUserId
string
required

This member's healthieId

Example:

"2222222"

isMember
boolean
required

Indicates whether the member has an active Lifeforce membership.

Example:

true

latestClinician
string
required

The name of the member's latest clinician.

Example:

"Renae Thomas, MD, MPH"

latestDiagnosticAt
string<date-time>
required
Example:

"2022-04-18T09:46:00Z"

latestHealthCoach
string
required

The name of the member's latest health coach.

Example:

"Vinnie Antonelli-Galizio"

membershipType
string
required

The type of membership the member has.

Example:

"classic"

memberSince
string<date-time>
required
Example:

"2022-04-18T09:46:00Z"

healthTrack
string | null

The member's current health track, or null if not assigned.

Example:

null