Patient

Description: Patient Demographics.

Reference: Patient in FHIR specification.

Search

Search Parameters:

NameTypeRequiredDescription
_countnumberFalseNumber of resources to return.
birthdatedateFalsePatient's date of birth.
familystringFalseThe individual's last name.
genderstringFalseGender
givenstringFalseThe individual's first name.
identifiertokenFalseThe identifier for the Patient.
namestringFalseThe individual's first or last name.
DateIncluded= True

* See Date Search for more information on searching by date.

Sample Request:

GET https://greathospital.com:8100/r4/sites/123/Patient?name=BISHOP&birthdate=1956

Read

Sample Request:

GET https://greathospital.com:8100/r4/sites/123/Patient/1

Add

Sample Request:

POST https://greathospital.com:8100/r4/sites/123/Patient
Body:
{
    "resour%ceType": "Patient",
    "text": {
        "status": "generated",
        "div": "<p><b>Patient</b></p><p><b>Name</b>: TROUBLE, Tom</p><p><b>Gender</b>: Male</p> <p><b>BirthDate</b>:1965-08-18</p><p><b>Identifiers</b>:</p><p><b>Medical record number</b>: MRN-JPVABCD</p> <p><b>Communication:</b></p><p><b>Primary Language</b>: Spanish</p> <p><b>Care Providers:</b></p>"
    },
    "extension": [{
        "url": "http://hl7.org/fhir/StructureDefinition/us-core-ethnicity",
        "valueCodeableConcept": {
            "coding": [{
                "system": "http://hl7.org/fhir/v3/Ethnicity",
                "code": "2186-5",
                "display": "Not Hispanic or Latino"
            }],
            "text": "Not Hispanic or Latino"
        }
    }],
    "identifier": [{
        "type": {
            "coding": [{
                "system": "http://hl7.org/fhir/v2/0203",
                "code": "MR"
            }],
            "text": "Medical record number"
        },
        "value": "MRN-JPVABCD99"
    }],
    "name": [{
        "use": "usual",
        "family": [
            "TROUBLE99"
        ],
        "given": [
            "Tom"
        ],
        "text": "TROUBLE, Tom"
    }],
    "gender": "male",
    "birthDate": "1965-08-18",
    "communication": [{
        "language": {
            "text": "Spanish"
        },
        "preferred": true
    }]
}

Delete

Sample Request:

DELETE https://greathospital.com:8100/r4/sites/123/Patient/1

Update

Sample Request:

PUT https://greathospital.com:8100/r4/sites/123/Patient

Operations

  • $export

© T-System, Inc. 2023 All Rights Reserved.