put https://fhir-api.zapehr.com/r4b/SupplyDelivery/
SupplyDelivery on the FHIR specification website.
Record of delivery of what is supplied.
The body should be a valid FHIR object for SupplyDelivery.
Here is an example:
{
"resourceType": "SupplyDelivery",
"id": "pumpdelivery",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"
},
"identifier": [
{
"value": "98398459409",
"assigner": {
"display": "SupplierDeliveryNr"
}
}
],
"status": "in-progress",
"patient": {
"display": "Mr. Belpit"
},
"supplier": {
"display": "ACME distribution"
},
"destination": {
"display": "Home care dept"
},
"receiver": [
{
"display": "Nurse Smith"
}
]
}
You can reference the FHIR documentation to determine the format for SupplyDelivery
.