Patch ChargeItemDefinition Resource

patch

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

Patch a resource instance of type ChargeItemDefinition 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-ChargeItemDefinition-RESOURCE
Type: object
ChargeItemDefinition FHIR Resource
Example:
{
  "resourceType": "ChargeItemDefinition"
}
Back to Top