Creating a Partition

The $partition-management-create-partition operation can be used to create a new partition.

An HTTP POST to the following URL can be used to invoke this operation. Notice that we use the DEFAULT partition, as it always exists by default.

Example:

http://localhost:9001/oracle-fhir-server/fhir/DEFAULT/$partition-management-create-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"
  } ]
}