R4 ServiceRequest
The ServiceRequest resource describes a "record of a request for service such as diagnostic investigations, treatments, or operations to be performed." HL7 FHIR R4 ServiceRequest
Supported Profiles
This API supports the following FHIR profiles:
Operations
The General Purpose FHIR R4 ServiceRequest resource supports the following standard operations. However, support varies by the targeted CareRecord or solution.
| CareRecord / Solution | Create | Read | Update | Search |
|---|---|---|---|---|
| GEHRIMED | - | - | - | - |
| myAvatar | - | - | - | - |
| myEvolv | - | - | - | - |
| myUnity | - | - | - | - |
| Referral Manager | - | - | - | - |
Search
info
Not all Netsmart solutions support ServiceRequest search. See supported operations table above and consult your target solution's documentation for more information.
This resource supports a combination of standard and custom search parameters in addition to the common parameters.
Standard Parameters
| Name | Type | Description |
|---|---|---|
| authored | date | Date request signed |
| category | token | Classification of service |
| code | token | What is being request/ordered |
| identifier | token | Identifiers assigned to this order |
| patient | reference | Search by subject - a patient |
| status | token | The status of the service |
Search Examples
The POST method is recommended as it keeps health information out of the URL.
- Production
- Preview
Search Service Requests by Patient
curl -X POST https://fhir.netsmartcloud.com/v4/ServiceRequest/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/678" \
Search Service Requests by Patient
curl -X POST https://fhirtest.netsmartcloud.com/v4/ServiceRequest/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "patient=Patient/678" \