Skip to main content

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 / SolutionCreateReadUpdateSearch
GEHRIMED-Yes--
myAvatar-Yes--
myEvolv-Yes--
myUnity-Yes--
TheraOffice-Yes--
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

NameTypeDescription
codetokenThe kind of resources contained
memberreferenceReference to the group member
pagestringZero-based page index
typetokenIdentifies the broad classification of the kind of resources the group includes.
_revincludespecialInclude Provenance resource(s) that reference the matched search results. Allowed: "Provenance:target"

Search Example

Via POST

The POST method is recommended as it keeps health information out of the URL.

Search by Member
curl -X POST https://fhir.netsmartcloud.com/uscore/v1/Group/_search \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d "member=Patient/123"
Via GET
Search by Member
curl -X GET "https://fhir.netsmartcloud.com/uscore/v1/Group?member=Patient/123" \
-H "Authorization: {Bearer Token}" \
-H "Accept: application/fhir+json"