Medical Encounters
MedicalEncounter
s represents a patient's journey/visit. it would be used to associate multiple MedicalRecord
s, the Billing
information, Diagnostic
records, and other services rendered to the patient
Creating Encounters
A medical encounter can be started using the medical-encounters
API's create
method.
Notes
- A create payload with
invoice: true
will auto create an associatedBillingInvoice
.
Finishing Encounters
MedicalEncounter
s should be marked as finished at the end of the actual patient visit as it would cascade to finalizing the associated MedicalRecord
s created during the visit (they would be considered drafts otherwise). To finalize an MedialEncounter
, a special patch
operator finish: true
can be use in the medical-encounters
API's patch
method.
Example
curl <base-url>/medical-encounters/<encounter-id> \
-X PATCH \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <accessToken>"
-d "{
"finish": true,
}"