Group
This resource "represents a defined collection of entities that may be discussed or acted upon collectively but which are not expected to act collectively, and are not formally or legally recognized; i.e. a collection of entities that isn't an Organization."
Supported Profiles
This API supports the following FHIR profile:
Operations
The Certified API Group resource supports the following standard operations. However, support varies by the targeted CareRecord or solution.
| CareRecord / Solution | Create | Read | Update | Search |
|---|---|---|---|---|
| GEHRIMED | - | Yes | - | - |
| myAvatar | - | Yes | - | - |
| myEvolv | - | Yes | - | - |
| myUnity | - | Yes | - | - |
| TheraOffice | - | Yes | - | - |
Search
info
Not all Netsmart solutions support Group search. See supported operations table above and consult your target solution's documentation for more information.
This operation retrieves a list of resources by these query parameters.
Search Parameters
| Name | Type | Description |
|---|---|---|
| code | token | The kind of resources contained |
| member | reference | Reference to the group member |
| type | token | Reference to the group member |
Search Example
Via POST
The POST method is recommended as it keeps health information out of the URL.
- Production
- Preview
Search by Member
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/bulk-data/Group/_search \
-H "Authorization: {Bearer Token}" \
-H "Content-Type: application/fhir+json" \
-d "member=Patient/123"
Search by Member
curl -X POST https://fhirtest.netsmartcloud.com/uscore/v1/bulk-data/Group/_search \
-H "Authorization: {Bearer Token}" \
-H "Content-Type: application/fhir+json" \
-d "member=Patient/123"
Via GET
- Production
- Preview
Search by Member
curl -X GET "https://fhir.netsmartcloud.com/uscore/v1/bulk-data/Group?member=Patient/123" \
-H "Authorization: {Bearer Token}" \
-H "Content-Type: application/fhir+json"
Search by Member
curl -X GET "https://fhirtest.netsmartcloud.com/uscore/v1/bulk-data/Group?patient=Patient/123" \
-H "Authorization: {Bearer Token}" \
-H "Content-Type: application/fhir+json"