patch https://fhir-api.zapehr.com/r4b/SearchParameter/
SearchParameter on the FHIR specification website.
A search parameter that defines a named search item that can be used to search/filter on a resource.
The body should be a list of valid JSON patches for SearchParameter. For example, to update a Slot status to busy, this would be the body:
[
{
op: 'replace',
path: '/status',
value: 'busy',
},
],