GET api/GroupExport/{GroupId}

Retrieve Group Manifest Resource Json.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GroupId

The ID of the group

string

Required

Body Parameters

None.

Response Information

Resource Description

A pretty-printed JSON string representing the group manifest

GroupexportResource
NameDescriptionTypeAdditional information
resource

GroupManifestInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "resource": {
    "resourceType": "sample string 1",
    "id": "sample string 2",
    "text": {
      "status": "sample string 1",
      "div": "sample string 2"
    },
    "type": "sample string 3",
    "actual": true,
    "member": [
      {
        "entity": {
          "reference": "sample string 1"
        },
        "period": {
          "start": "sample string 1"
        }
      },
      {
        "entity": {
          "reference": "sample string 1"
        },
        "period": {
          "start": "sample string 1"
        }
      }
    ]
  }
}

application/xml, text/xml

Sample:
<GroupexportResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnboardingApi.Api_Model.FHIR">
  <resource>
    <actual>true</actual>
    <id>sample string 2</id>
    <member>
      <GroupManifestMember>
        <entity>
          <reference>sample string 1</reference>
        </entity>
        <period>
          <start>sample string 1</start>
        </period>
      </GroupManifestMember>
      <GroupManifestMember>
        <entity>
          <reference>sample string 1</reference>
        </entity>
        <period>
          <start>sample string 1</start>
        </period>
      </GroupManifestMember>
    </member>
    <resourceType>sample string 1</resourceType>
    <text>
      <div>sample string 2</div>
      <status>sample string 1</status>
    </text>
    <type>sample string 3</type>
  </resource>
</GroupexportResource>