Patient

Patient returns information about a patient.

Query

Endpoint

GET <serveraddress>/fhir/Patient

Parameter

Parameter Query example Description
id <endpoint>/<id> the technical id of the patient
identifier <endpoint>?identifier=<identifier> the external identifier of the patient

Searching identifers with a specific system is not supported.

Example

{
    "resourceType": "Patient",
    "id": "patient-example",
    "identifier":  [
        {
            "system": "http://www.qualitype.de/samples/fhir/NamingSystem/patient-identifier",
            "value": "patient-intern-123"
        }
    ],
    "name":  [
        {
            "family": "Mustermann",
            "given":  [
                "Max"
            ]
        }
    ],
    "birthDate": "2003-02-01"
}