Immunization

The FHIR R4 Immunization resource captures details about vaccines administered to a patient. It includes information about the vaccine type, dosage, administration details, and other relevant data. This resource helps healthcare providers track immunization history and ensure patients receive appropriate vaccinations.

Health Gorilla exposes Immunization as part of its FHIR R4 API to support patient-centric tracking of vaccination history and administration details.

Use Cases

  • Recording vaccine administration for a patient
  • Retrieving immunization history for a patient
  • Updating immunization details for ongoing vaccination plans

Scope and Behavior

This documentation describes the FHIR R4 API interface for Immunization. Health Gorilla’s platform may use additional internal services and data standards to acquire, normalize, and route clinical information. Only the FHIR R4–exposed behavior is documented here.

Health Gorilla supports a subset of the HL7 FHIR R4 Immunization resource. Not all optional elements defined in the HL7 specification may be stored, indexed, or returned. Unsupported or unrecognized elements may be ignored or normalized during processing.

In Health Gorilla, Immunization is most commonly accessed as part of patient record retrieval workflows, where vaccination data may be aggregated from connected clinical systems and normalized for longitudinal review. This resource supports preventive care tracking, compliance reporting, and public health documentation use cases.

Authentication

All requests to the FHIR R4 API require OAuth 2.0 authentication using a bearer token. Unauthorized requests return 401 Unauthorized responses.

Required Scopes:

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

For more information, go to: OAuth 2.0 Authentication.

Search Behavior

Searches are scoped to the authenticated tenant. The patient parameter is required for patient-scoped searches and is recommended for most search use cases.

Results are returned as a FHIR Bundle. Pagination may be applied. Use standard FHIR pagination links (Bundle.link) to retrieve additional result pages.

Note: The parameters listed below are not exhaustive and reflect commonly used fields in typical Health Gorilla workflows. Supported parameters and behavior may vary by configuration.

Frequently Used Search Parameters

ParameterDescriptionExample ValuesFHIR Data Type
patientFilters by patientPatient/{id}Reference
dateFilters by administration datege2022-01-01, le2023-12-31date
vaccine-codeFilters by vaccine codeSNOMED CT or CVX codestoken
statusFilters by immunization statuscompleted, entered-in-errortoken
manufacturerFilters by vaccine manufacturerOrganization/{id}Reference
lot-numberFilters by vaccine lot numberAB12345token
encounterFilters by related encounterEncounter/{id}Reference
locationFilters by administration locationLocation/{id}Reference
status-reasonFilters by reason for current statusSNOMED CT codestoken

Commonly Returned Resource Attributes

AttributeDescriptionExample ValuesFHIR Data Type
patientReference to the patient who received the immunizationPatient/{id}Reference(Patient)
vaccineCodeVaccine administeredSNOMED CT or CVX codeCodeableConcept
statusCurrent status of the immunizationcompleted, entered-in-errorcode
occurrenceDateTimeDate and time when the immunization was administered2022-01-01T12:00:00ZdateTime
lotNumberLot number of the administered vaccineAB12345string
manufacturerVaccine manufacturerOrganization/{id}Reference(Organization)
encounterEncounter during which immunization was administeredEncounter/{id}Reference(Encounter)
locationLocation of administrationLocation/{id}Reference(Location)
performerWho administered the vaccinePractitioner/{id}, Organization/{id}BackboneElement[]
noteAdditional notesAnnotation entriesAnnotation[]
reactionReaction details following immunizationStructured reaction entriesBackboneElement[]

Notifications

The FHIR R4 API does not provide direct resource-change subscriptions for Immunization. Changes to immunization information may surface through broader notification workflows, depending on enabled Health Gorilla products and configuration.

Error Handling

All Immunization 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 Immunization Resource