Instance-Level Expunge Operation

post

/oracle-fhir-server/fhir/ResearchStudy/{id}/$expunge

The $expunge operation can be invoked against a single ResearchStudy resource instance, or even an individual version of a ResearchStudy resource instance. If invoked at the instance level , previous versions of the ResearchStudy resource may be deleted (if expungePreviousVersions is set to true) and the current version may be deleted (if the ResearchStudy resource is deleted and expungeDeletedResources is set to true)

Request

Path Parameters
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
  }, {
    "name": "count"
  } ]
}
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : FHIR-JSON-RESOURCE
Type: object
A FHIR resource
Back to Top