patch https://fhir-api.zapehr.com/r4b/ServiceRequest/
ServiceRequest on the FHIR specification website.
A record of a request for service such as diagnostic investigations, treatments, or operations to be performed.
The body should be a list of valid JSON patches for ServiceRequest. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],