patch https://fhir-api.zapehr.com/r4b/CapabilityStatement/
CapabilityStatement on the FHIR specification website.
A Capability Statement documents a set of capabilities (behaviors) of a FHIR Server for a particular version of FHIR that may be used as a statement of actual server functionality or a statement of required or desired server implementation.
The body should be a list of valid JSON patches for CapabilityStatement. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],