Patsiendi üldandmete teenus / Master Patient Index
1.5.0 - trial-use Estonia flag

Patsiendi üldandmete teenus / Master Patient Index - Downloaded Version 1.5.0 See the Directory of published versions

OperationDefinition: Patient Foreign

Official URL: https://fhir.ee/mpi/OperationDefinition/patient-foreign Version: 1.5.0
Active as of 2026-03-26 Computable Name: EEMPIPatientForeignSearch

The foreign patient search operation to perform search over non-estonian patient resources.

URL: [base]/Patient/$foreign

Parameters

UseNameScopeCardinalityTypeBindingDocumentation
INidentifier-country1..1string

Three-letter country code of the issuer of the identifier according to the ISO standard.

INbirthdate0..1date

Patient's date of birth in yyyy-mm-dd format.

INgender0..1string

Patient's gender.

INgiven0..1string

Given name. Search supports similarity, allows up to 2 typos, case-insensitive. Comma-separated values are allowed.

INfamily0..1string

Family name. Search supports similarity, allows up to 2 typos, case-insensitive. Comma-separated values are allowed.

INtelecom0..1string

Telecom value, e-mail or phone number. Case-insensitive. Comma-separated values are allowed.

OUTreturn1..1Bundle

Returns Bundle (with type collection) with Patient instances.

Notes:

Näited

Näide päringust:

GET {MPI}/Patient/$foreign?gender=male&birthdate=1979-12-25&family=Graham&given=Gene&identifier_country=UZB&telecom=%2B1234567

Vastusena tuleb (collection) Bundle mis tagastab kollektsiooni leitud ressurssidest (ilma metainformatsioonita):

{
  "resourceType": "Bundle",
  "type": "collection",
  "entry": [
    {
      "resource": {
        "resourceType": "Patient",
        "id": "895",
        "meta": {
          "lastUpdated": "2024-08-05T08:41:32.120+03:00",
          "profile": [
            "https://fhir.ee/mpi/StructureDefinition/ee-mpi-patient-verified"
          ]
        },
        "identifier": [
          {
            "system": "https://fhir.ee/sid/pid/uzb/ppn",
            "value": "113354925133"
          }
        ],
        "active": true,
        "name": [
          {
            "use": "official",
            "family": "Graham",
            "given": [
              "Gene"
            ]
          }
        ],
        "telecom": [
          {
            "system": "phone",
            "value": "+1234567",
            "period": {
              "start": "2024-08-05T08:41:32+03:00"
            }
          }
        ],
        "gender": "male",
        "birthDate": "1979-12-25"
      }
    }
  ]
}