API Referenceapipatient-graphGET /v1/admin/members/{user_id}/clinical-summary

GET /v1/admin/members/\{user_id\}/clinical-summary

Service: patient-graph · operationId: (none)

Required scopes

(no scope declared — review service config)

Path parameters

  • user_id (string) required

Responses

200 Non-PHI clinical summary for support lookup

{
  "type": "object",
  "properties": {
    "patient_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "biomarker_count": {
      "type": "integer"
    },
    "last_lab_date": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "patient_id",
    "biomarker_count",
    "last_lab_date"
  ]
}

404 Patient not found for user

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  },
  "required": [
    "error",
    "message"
  ]
}

Example

curl -X GET https://patient-graph.platform.loop.health/v1/admin/members/{user_id}/clinical-summary \
  -H "Authorization: Bearer $ACCESS_TOKEN"