HealthcareService
The HealthcareService resource provides "The details of a healthcare service available at a location." (HL7 FHIR R4 HealthcareService)
Supported Profiles
This API supports the following FHIR profiles:
Operations
The Certified and Regulated Provider Directory API HealthcareService 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 HealthcareService 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 |
|---|---|---|
| coverage-area | reference | Location(s) service is intended for/available to |
| endpoint | reference | Technical endpoints providing access to electronic services operated for the healthcare service |
| location | reference | The location of the healthcare service |
| name | string | A portion of the healthcare service name |
| organization | reference | The organization that provides this healthcare service |
| service-category | token | Service category of the healthcare service |
| service-type | token | The type of service provided by this healthcare service |
| specialty | token | The specialty of the service provided by this healthcare service |
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}/HealthcareService/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "name=Consulting psychologists and/or psychology services"
Search by Location
curl -X POST https://fhir.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/HealthcareService/_search \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "location=Location/123"
Search by Name
curl -X POST https://fhirtest.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/HealthcareService/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "name=Consulting psychologists and/or psychology services"
Search by Location
curl -X POST https://fhirtest.netsmartcloud.com/payer/provider-directory/v2/{tenant-id}/HealthcareService/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "location=Location/123"