Skip to main content

Patient

The Patient resource provides the "demographics and other administrative information about an individual or animal receiving care or other health-related services." (HL7 FHIR R4 Patient)

Supported Profiles

This API supports the following FHIR profiles:

Operations

The Certified API Patient resource supports the following standard operations. However, support varies by the targeted CareRecord or solution.

CareRecord / SolutionCreateReadUpdateSearch
GEHRIMED-Yes-Yes
myAvatar-Yes-Yes
myEvolv-Yes-Yes
myUnity-Yes-Yes
TheraOffice-Yes-Yes
info

Not all Netsmart solutions support Patient search. See supported operations table above and consult your target solution's documentation for more information.

This operation retrieves a list of resources by these query parameters.

Standard Parameters

NameTypeDescription
birthdatedateThe patient's date of birth
death-datedateThe date of death has been provided and satisfies this search value
familystringA portion the family name of the patient
gendertokenGender of the patient
givenstringA portion of the given name of the patient
identifiertokenAn identifier for this patient
namestringA name associated with the patient
pagestringZero-based page index
_ididUnique identifier of the Patient.
_revincludespecialInclude Provenance resource(s) that reference the matched search results. Allowed: "Provenance:target"

Search Examples

Via POST

The POST method is recommended as it keeps health information out of the URL.

Search by Date of Birth
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/Patient/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "birthdate=ge1996-03-28" \
-d "birthdate=le1996-03-30"
Search by US Social Security Number
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/Patient/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "identifier=http://hl7.org/fhir/sid/us-ssn|123456789"
Via GET
Search by Birth Date
curl -X GET "https://fhir.netsmartcloud.com/uscore/v1/Patient?birthdate=ge1996-03-28&birthdate=le1996-03-30" \ 
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"
Search by US Social Security Number
curl -X GET "https://fhir.netsmartcloud.com/uscord/v1/Patient?identifier=http://hl7.org/fhir/sid/us-ssn|123456789" \ 
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"