Updating a Partition

The $partition-management-update-partition operation can be used to update an existing partition.

An HTTP POST to the following URL can be used to invoke this operation.

Example:

http://localhost:9001/oracle-fhir-server/fhir/DEFAULT/$partition-management-update-partition

The following request body could be used:

{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "id",
    "valueInteger": 123
  }, {
    "name": "name",
    "valueCode": "PARTITION-123"
  }, {
    "name": "description",
    "valueString": "a description"
  } ]
}