Listing all Partitions

The $partition-management-list-partitions operation can be used to list all existing partitions.

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-list-partitions
This operation returns a Parameters resource that looks like the following:
{
    "resourceType": "Parameters",
    "parameter": [ {
       "name": "partition",
       "part": [ {
          "name": "id",
          "valueInteger": 1
        }, {
          "name": "name",
          "valueCode": "PARTITION-1"
        }, {
          "name": "description",
          "valueString": "a description1"
        } ]
      }, {
       "name": "partition",
       "part": [ {
          "name": "id",
          "valueInteger": 2
       }, {
          "name": "name",
          "valueCode": "PARTITION-2"
       }, {
          "name": "description",
          "valueString": "a description2"
       } ]
    } ]
}