Practitioner
The Practitioner resource is "A person who is directly or indirectly involved in the provisioning of healthcare or related services."
Supported Profiles
The 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 | - | - | - | - |
| myAvatar | - | Yes | - | Yes |
| myEvolv | - | - | - | - |
| myUnity | - | - | - | - |
| TheraOffice | - | - | - | - |
Search
info
Not all Netsmart solutions support Practitioner search. See supported operations table above and consult your target solution's documentation for more information.
This resource supports standard search parameters in addition to the common parameters.
Standard Parameters
| Name | Type | Description |
|---|---|---|
| family | string | A portion of the family name |
| given | string | A portion of the given name |
| identifier | token | A practitioner's Identifier |
| name | 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 |
Search Examples
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/payer/provider-directory/v2/{tenant-id}/Practitioner/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "name=Joe%20Baker"
Search by identifier
curl -X POST https://fhir.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/Practitioner/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "identifier=pv123nt456"
Search by name
curl -X POST https://fhirtest.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/Practitioner/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "name=Joe%20Bakerr"
Search by identifier
curl -X POST https://fhirtest.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/Practitioner/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "identifier=pv123nt456"