patch https://fhir-api.zapehr.com/r4b/MedicationAdministration/
MedicationAdministration on the FHIR specification website.
Describes the event of a patient consuming or otherwise being administered a medication. This may be as simple as swallowing a tablet or it may be a long running infusion. Related resources tie this event to the authorizing prescription, and the specific encounter between patient and health care practitioner.
The body should be a list of valid JSON patches for MedicationAdministration. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],