Download OpenAPI specification:Download
Create a new algorithm in the MPI database.
:param data: The algorithm data :returns: The created algorithm
label required | string (Label) ^[a-z0-9]+(?:-[a-z0-9]+)*$ |
Description (string) or Description (null) (Description) | |
is_default | boolean (Is Default) Default: false |
required | Array of objects (Passes) |
{- "label": "string",
- "description": "string",
- "is_default": false,
- "passes": [
- {
- "blocking_keys": [
- "string"
], - "evaluators": {
- "property1": "string",
- "property2": "string"
}, - "rule": "string",
- "cluster_ratio": 0,
- "kwargs": { }
}
]
}
{- "label": "string",
- "description": "string",
- "is_default": false,
- "passes": [
- {
- "blocking_keys": [
- "string"
], - "evaluators": {
- "property1": "string",
- "property2": "string"
}, - "rule": "string",
- "cluster_ratio": 0,
- "kwargs": { }
}
]
}
Get an algorithm by its label from the MPI database.
:param label: The algorithm label :returns: algorithm
label required | string (Label) |
{- "label": "string",
- "description": "string",
- "is_default": false,
- "passes": [
- {
- "blocking_keys": [
- "string"
], - "evaluators": {
- "property1": "string",
- "property2": "string"
}, - "rule": "string",
- "cluster_ratio": 0,
- "kwargs": { }
}
]
}
Update an existing algorithm in the MPI database.
:param label: The algorithm label :param data: The algorithm data :returns: The updated algorithm
label required | string (Label) |
label required | string (Label) ^[a-z0-9]+(?:-[a-z0-9]+)*$ |
Description (string) or Description (null) (Description) | |
is_default | boolean (Is Default) Default: false |
required | Array of objects (Passes) |
{- "label": "string",
- "description": "string",
- "is_default": false,
- "passes": [
- {
- "blocking_keys": [
- "string"
], - "evaluators": {
- "property1": "string",
- "property2": "string"
}, - "rule": "string",
- "cluster_ratio": 0,
- "kwargs": { }
}
]
}
{- "label": "string",
- "description": "string",
- "is_default": false,
- "passes": [
- {
- "blocking_keys": [
- "string"
], - "evaluators": {
- "property1": "string",
- "property2": "string"
}, - "rule": "string",
- "cluster_ratio": 0,
- "kwargs": { }
}
]
}
Compare a PII Reocrd with records in the Master Patient Index (MPI) to check for matches with existing patient records If matches are found, returns the patient and person reference id's
required | object (PIIRecord) A PIIRecord to be checked |
Algorithm (string) or Algorithm (null) (Algorithm) Optionally, a string that maps to an algorithm label stored in algorithm table | |
External Person Id (string) or External Person Id (null) (External Person Id) The External Identifier, provided by the client, for a unique patient/person that is linked to patient(s) |
{- "record": {
- "external_id": "string",
- "birth_date": "2019-08-24",
- "sex": "M",
- "mrn": "string",
- "address": [ ],
- "name": [ ],
- "telecom": [ ],
- "ssn": "string",
- "race": "AMERICAN_INDIAN",
- "gender": "FEMALE",
- "drivers_license": {
- "value": "string",
- "authority": "string"
}
}, - "algorithm": "string",
- "external_person_id": "string"
}
{- "is_match": true,
- "patient_reference_id": "266c775e-4b03-489b-b290-03181bfdfea2",
- "person_reference_id": "8e5a91ce-4436-4673-9cc9-9835a59dfb92"
}
Compare a FHIR bundle with records in the Master Patient Index (MPI) to check for matches with existing patient records If matches are found, returns the FHIR bundle with updated references to existing patients. This is a special endpoint that allows integration into a DIBBs pipeline, as it accepts and returns FHIR bundles.
bundle required | object (Bundle) A FHIR bundle containing a patient resource to be checked for links to existing patient records |
Algorithm (string) or Algorithm (null) (Algorithm) Optionally, a string that maps to an algorithm label stored in algorithm table | |
External Person Id (string) or External Person Id (null) (External Person Id) The External Identifier, provided by the client, for a unique patient/person that is linked to patient(s) |
{- "bundle": { },
- "algorithm": "string",
- "external_person_id": "string"
}
{- "found_match": true,
- "updated_bundle": { },
- "message": ""
}
Compare a FHIR bundle with records in the Master Patient Index (MPI) to check for matches with existing patient records If matches are found, returns the patient and person reference id's
bundle required | object (Bundle) A FHIR bundle containing a patient resource to be checked for links to existing patient records |
Algorithm (string) or Algorithm (null) (Algorithm) Optionally, a string that maps to an algorithm label stored in algorithm table | |
External Person Id (string) or External Person Id (null) (External Person Id) The External Identifier, provided by the client, for a unique patient/person that is linked to patient(s) |
{- "bundle": { },
- "algorithm": "string",
- "external_person_id": "string"
}
{- "is_match": true,
- "patient_reference_id": "266c775e-4b03-489b-b290-03181bfdfea2",
- "person_reference_id": "8e5a91ce-4436-4673-9cc9-9835a59dfb92"
}
Create a new Person in the MPI database and link the Patient to them.
patient_reference_id required | string <uuid> (Patient Reference Id) |
{- "patient_reference_id": "266c775e-4b03-489b-b290-03181bfdfea2",
- "person_reference_id": "8e5a91ce-4436-4673-9cc9-9835a59dfb92"
}
Update the Person linked on the Patient.
patient_reference_id required | string <uuid> (Patient Reference Id) |
person_reference_id required | string <uuid> (Person Reference Id) |
{- "person_reference_id": "8e5a91ce-4436-4673-9cc9-9835a59dfb92"
}
{- "patient_reference_id": "266c775e-4b03-489b-b290-03181bfdfea2",
- "person_reference_id": "8e5a91ce-4436-4673-9cc9-9835a59dfb92"
}