put https://fhir-api.zapehr.com/r4b/CatalogEntry/
CatalogEntry on the FHIR specification website.
Catalog entries are wrappers that contextualize items included in a catalog.
The body should be a valid FHIR object for CatalogEntry.
Here is an example:
{
  "resourceType": "CatalogEntry",
  "id": "example",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"
  },
  "identifier": [
    {
      "system": "http://example.com/identifier",
      "value": "123"
    }
  ],
  "type": {
    "text": "Medication"
  },
  "orderable": true,
  "referencedItem": {
    "reference": "Medication/123"
  }
}
You can reference the FHIR documentation to determine the format for CatalogEntry.
