Expunge

post

oracle-fhir-server/fhir/$expunge

The $expunge operation is a powerful operation that can physically delete old versions of resources, deleted resources, or even all data in the database.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/fhir+json ()
FHIR Parameters Resource
Root Schema : schema
Type: object
FHIR Parameters Resource
Example:
{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "limit",
    "valueInteger": 0
  }, {
    "name": "expungeDeletedResources",
    "valueBoolean": false
  }, {
    "name": "expungePreviousVersions",
    "valueBoolean": false
  }, {
    "name": "expungeEverything",
    "valueBoolean": false
  } ]
}
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : FHIR-EXPUNGE-RESP-RESOURCE
Type: object
FHIR Parameters Resource
Example:
{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "count",
    "valueInteger": 0
  } ]
}
Back to Top