Skip to main content

practitioner


title: Certified Practitioner pagination_label: Practitioner sidebar_label: Practitioner

hide_title: true

Practitioner

The Practitioner resource provides the "person who is directly or indirectly involved in the provisioning of healthcare." (HL7 FHIR R4 Practitioner)

Supported Profiles

This API supports the following FHIR profiles:

Operations

The Certified API Practitioner 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 Practitioner search. See supported operations table above and consult your target solution's documentation for more information.

Standard Parameters

NameTypeDescription
familystringA server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text
givenstringA portion of the given name
identifiertokenA practitioner's Identifier
namestringA portion of the family name
pagestringZero-based page index

Search Examples

Via POST

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

Search by Name
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/Practitioner/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "name=Smith"
Via GET
Search by Name
curl -X GET https://fhir.netsmartcloud.com/uscore/v1/Practitioner?name=Smith \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"