FamilyMemberHistory

The FHIR R4 FamilyMemberHistory resource captures information about a patient's family health history, including diagnoses, conditions, and other relevant details about family members' health statuses. This resource is useful for understanding hereditary conditions, risk factors, and providing personalized care.

Use Cases

  • Retrieve family history of genetic conditions
  • Log new family member health details for risk assessment
  • Monitor changes to family medical histories

Base URLs

Authentication

All requests require OAuth 2.0 authentication using a Bearer Token. Unauthorized requests return 401 Unauthorized responses.

Required scopes:

  • familymemberhistory.read for GET
  • familymemberhistory.write for POST, PUT, DELETE

For more information, go to: OAuth 2.0 Authentication.

Supported Methods

MethodOperationDescription
GETRead FamilyMemberHistoryRetrieves a specific FamilyMemberHistory record by its FHIR ID.
GETSearch FamilyMemberHistorySearches for FamilyMemberHistory records for a specified patient.
POSTCreate FamilyMemberHistorySubmits a new FamilyMemberHistory record to the Health Gorilla FHIR server.
PUTUpdate FamilyMemberHistoryUpdates an existing FamilyMemberHistory record by full resource replacement.
DELETEDelete FamilyMemberHistoryRemoves an existing FamilyMemberHistory record from the system by full deletion.

Frequently Used Search Parameters

ParameterDescriptionFHIR Value Set / Example ValuesFHIR Data TypeRequired
patientFilters by patient IDPatient/{id}ReferenceYes
dateFilters by family member history creation datege2024-01-01, le2024-12-31dateNo
statusFilters by the current status of the family history recordFamilyMemberHistoryStatus (completed)tokenNo
relationshipFilters by the relationship of the family memberFamilyMemberHistoryRelationship (father)tokenNo
conditionFilters by a condition associated with a family memberCondition/{id}ReferenceNo

Commonly Returned Resource Attributes

AttributeDescriptionExample ValuesFHIR Data TypeRequired
statusThe status of the family member historycompletedCodeableConceptYes
relationshipThe relationship of the family member to the patientfatherCodeableConceptYes
conditionConditions or diseases associated with the family memberCondition/{id}ReferenceNo
dateThe date when the family member history was recorded2024-02-12T12:34:56ZdateTimeNo
noteAny additional notes or free-text informationPatient's father had a heart attack at age 50.stringNo

Webhooks

Clients can subscribe to receive notifications when a family member history record is created or updated. For more information, go to: Webhooks & Polling.

Error Handling

All FamilyMemberHistory operations follow standard Health Gorilla error handling, including use of FHIR OperationOutcome for structured responses. For more information, go to: Error Handling.

Additional Resources

HL7 FHIR FamilyMemberHistory