Query Duplicate Golden Resources

The HDR FHIR server uses the $mdm-duplicate-golden-resources operation to request a list of duplicate Golden Resources.

Example:

GET http://localhost:7001/oracle-fhir-server/fhir/$mdm-duplicate-golden-resources

The following is a table of the request parameters supported by this GET operation.

Table 12-3 Request parameters for GET operation

Name Type Description
_offset int Offset to begin returning records at.
_count int Number of links to be returned in a page
resourceType String Resource type (e.g. Patient)
This operation returns Parameters in response similar to $mdm-query-links:
{
  "resourceType": "Parameters",
  "parameter": [ {
    "name": "link",
    "part": [ {
      "name": "goldenResourceId",
      "valueString": "Patient/123"
    }, {
      "name": "sourceResourceId",
      "valueString": "Patient/456"
    }, {
      "name": "matchResult",
      "valueString": "POSSIBLE_DUPLICATE"
    }, {
      "name": "linkSource",
      "valueString": "AUTO"
    } ]
  } ]
}