Patch Medication Resource

patch

/oracle-fhir-server/fhir/Medication/{id}

Patch a resource instance of type Medication by ID

Request

Path Parameters
Supported Media Types
Request Body - application/json-patch+json ()
A FHIR Resource
Root Schema : schema
Type: object
A FHIR Resource
Example:
[
 { 
   "op": "replace", 
   "path": "/address/0/postalCode", 
   "value": "4000" 
 },
 { 
   "op": "replace", 
   "path": "/birthDate", 
   "value": "1974-02-20" 
 }
]
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : FHIR-Medication-RESOURCE
Type: object
Medication FHIR Resource
Example:
{
  "resourceType": "Medication",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"/>"
  }
}
Back to Top