Vai al contenuto principale

Encounter

Overview

The Encounter resource represents a clinical interaction between a patient and a healthcare professional within vitalera's remote patient monitoring platform. Encounters can be in-person visits or virtual telehealth interactions (video calls), tracking the context in which vital sign reviews, care plan adjustments, and clinical decisions take place.

API Endpoints

MethodPathDescription
GET/api/encounters/List encounters
GET/api/encounters/{id}/Get encounter details

Data Model

FieldTypeDescription
idintegerUnique identifier
statusstringEncounter status
classstringType of encounter (virtual, ambulatory)
subjectreferenceThe patient
participantarrayHealthcare professionals involved
periodobjectStart and end time

Example

{
"id": 999,
"status": "finished",
"class": "virtual",
"subject": { "reference": "Patient/12345" },
"participant": [{ "individual": { "reference": "User/67890" } }],
"period": {
"start": "2024-01-20T10:00:00Z",
"end": "2024-01-20T10:25:00Z"
}
}