GET
/
patient
/
{patientId}
/
biomarker-summary
Get Patient Biomarker Summary
curl --request GET \
  --url https://om-staging.mylifeforce.com/api/m2m/patient/{patientId}/biomarker-summary \
  --header 'Authorization: Bearer <token>'
{
  "biomarkerSummaries": [
    {
      "dxOrderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "optimal": 80.5,
      "normal": 10.5,
      "above_range": 5,
      "below_range": 4
    }
  ]
}

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 with biomarker summaries

The response is of type object.