patch https://fhir-api.zapehr.com/r4b/MedicationDispense/
MedicationDispense on the FHIR specification website.
Indicates that a medication product is to be or has been dispensed for a named person/patient. This includes a description of the medication product (supply) provided and the instructions for administering the medication. The medication dispense is the result of a pharmacy system responding to a medication order.
The body should be a list of valid JSON patches for MedicationDispense. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],