Get a list of family member histories

get

/FamilyMemberHistory

Retrieves a list of family member histories that meet supplied query parameters.

Note: Family member histories with the FAMMEMB relation are sometimes system generated.

Request

Query Parameters
  • The logical resource ID. This parameter is required if patient is not used.
  • The identity of a subject to list family member history items for. This parameter is required if _id is not used.
    Example: 12345
  • The record status for a specific family member. This parameter is only provided when the patient search parameter is used.
Header Parameters
  • The media type to be requested. Refer to what the resource's operation produces for what is supported.

    Example: application/fhir+json

Back to Top

Response

Supported Media Types

Default Response

This operation supports the following authorization types: Example Request:
GET https://fhir-open.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/FamilyMemberHistory?patient=12504018
Example Response:
{
  "resourceType": "Bundle",
  "id": "e989e20d-5cfc-4b11-ab43-95ba1a684063",
  "type": "searchset",
  "link": [
    {
      "relation": "self",
      "url": "https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/FamilyMemberHistory?_id=489580643.0.-4.prsnl"
    }
  ],
  "entry": [
    {
      "fullUrl": "https://fhir-ehr-code.cerner.com/r4/ec2458f2-1e24-41c8-b71b-0e701af7583d/FamilyMemberHistory/489580643.0.-4.prsnl",
      "resource": {
        "resourceType": "FamilyMemberHistory",
        "id": "489580643.0.-4.prsnl",
        "meta": {
          "versionId": "0",
          "lastUpdated": "2020-07-16T21:31:35.457Z"
        },
        "text": {
          "status": "generated",
          "div": "<div xmlns='http://www.w3.org/1999/xhtml'><p><b>FamilyMemberHistory</b></p></div>"
        },
        "extension": [
          {
            "valueCodeableConcept": {
              "coding": [
                {
                  "system": "http://hl7.org/fhir/task-status",
                  "code": "completed",
                  "display": "Completed"
                }
              ],
              "text": "Completed"
            },
            "url": "https://fhir-ehr.cerner.com/r4/StructureDefinition/email-status"
          }
        ],
        "inResponseTo": [
          {
            "reference": "FamilyMemberHistory/512657279.0.-4.prsnl"
          }
        ],
        "status": "completed",
        "category": [
          {
            "coding": [
              {
                "system": "http://terminology.hl7.org/CodeSystem/communication-category",
                "code": "notification",
                "display": "Notification"
              }
            ],
            "text": "Notification"
          }
        ],
        "priority": "urgent",
        "subject": {
          "reference": "Patient/12505984",
          "display": "JOHNSON, MARIE"
        },
        "topic": {
          "text": "CDI Query"
        },
        "encounter": {
          "reference": "Encounter/97739401"
        },
        "sent": "2020-07-16T21:31:35.457Z",
        "received": "2020-07-16T21:31:35.457Z",
        "recipient": [
          {
            "reference": "Practitioner/12093978",
            "display": "Stone, RN, Sally Cerner"
          },
          {
            "reference": "Group/1568",
            "display": "HEALTHE Receiver Group"
          }
        ],
        "sender": {
          "reference": "Practitioner/11875977",
          "display": "Stratford, Angela Cerner"
        },
        "payload": [
          {
            "contentReference": {
              "reference": "Binary/489580643.0.-4.prsnl"
            }
          }
        ]
      }
    }
  ]
}
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the X-Request-Id, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the opc-Request-Id, if present.
Back to Top