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 / Solution | Create | Read | Update | Search |
|---|---|---|---|---|
| GEHRIMED | - | Yes | - | Yes |
| myAvatar | - | Yes | - | Yes |
| myEvolv | - | Yes | - | Yes |
| myUnity | - | Yes | - | Yes |
| TheraOffice | - | Yes | - | Yes |
Search
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
| Name | Type | Description |
|---|---|---|
| family | string | A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text |
| given | string | A portion of the given name |
| identifier | token | A practitioner's Identifier |
| name | string | A portion of the family name |
| page | string | Zero-based page index |
Search Examples
Via POST
The POST method is recommended as it keeps health information out of the URL.
- Production
- Preview
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"
Search by Name
curl -X POST https://fhirtest.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
- Production
- Preview
Search by Name
curl -X GET https://fhir.netsmartcloud.com/uscore/v1/Practitioner?name=Smith \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"
Search by Name
curl -X GET https://fhirtest.netsmartcloud.com/uscore/v1/Practitioner?name=Smith \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"