post https://fhir-api.zapehr.com/r4b/Encounter
Encounter on the FHIR specification website.
An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
The body should be a valid FHIR object for Encounter.
Here is an example:
{
"resourceType": "Encounter",
"id": "example",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Encounter with patient @example</div>"
},
"status": "in-progress",
"class": {
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "IMP",
"display": "inpatient encounter"
},
"subject": {
"reference": "Patient/example"
}
}
You can reference the FHIR documentation to determine the format for Encounter
.