Patient

Important note : The information provided is from local testing and is not valid.

Update

Http Interactions documentation.

Example 1

  • Update a patient with the data below
    • name.given
    • identifier.value (PCI and JHN)

{
    "resourceType": "Patient",
    "id": "f323325f-5f13-43e5-9ac1-76c20a79f1e3",
    "meta": {
        "profile":  [
            "http://fhir.akinox.com/r4b/StructureDefinition/Patient"
        ]
    },
    "identifier":  [
        {
            "type": {
                "coding":  [
                    {
                        "code": "PCI"
                    }
                ]
            },
            "value": "DUMC12083151;Dumais;Caroline;Male;2012-08-31"
        },
        {
            "type": {
                "coding":  [
                    {
                        "code": "JHN"
                    }
                ]
            },
            "value": "DUMC12083151",
            "period": {
                "end": "2024-08-01T00:00:00-04:00"
            }
        }
    ],
    "active": true,
    "name":  [
        {
            "family": "Dumais",
            "given":  [
                "Caroline"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "5551112544"
        }
    ],
    "gender": "male",
    "birthDate": "2012-08-31",
    "address":  [
        {
            "use": "home",
            "line":  [
                "42 FakeStreet"
            ],
            "city": "Magog",
            "state": "QC",
            "postalCode": "J1H5H3",
            "country": "CA"
        }
    ],
    "managingOrganization": {
        "reference": "Organization/a359480d-863d-444b-87b9-df0d3a603823"
    }
}

Result :

The API call returned a 200 and the data was updated with the modified field(s).