Get an immunization by ID
get
/Immunization/{ID}
Retrieves an individual immunization by the associated immunization ID.
Authorization Types
This operation supports the following authorization types:
- Provider
- Patient
- System
Request
Path Parameters
-
ID(required): string
The logical resource ID.
Header Parameters
-
Authorization(required): string
Contains the credentials to authenticate a consumer to the service. This should be the OAuth2 Bearer token.
-
accept(required): string
The media type to be requested. See what the resource's operation produces for what is supported.
Response
Supported Media Types
- application/fhir+json
Default Response
Example retrieval of an immunization record.
Example Request:
Example Request:
GET https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/Immunization/M197197986
Example Response:
{
'fullUrl': 'https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/Immunization/M197197986',
'resource': {
'resourceType': 'Immunization',
'id': 'M197197986',
'meta': {
'versionId': '1',
'lastUpdated': '2019-12-26T13:12:59-06:00'
},
'text': {
'status': 'generated',
'div': '<div><p><b>Immunization</b></p><p><b>Status</b>: Completed</p><p><b>Vaccine</b>: tetanus toxoid</p><p><b>Date</b>: 1982</p><p><b>Patient Name</b>: SMART, NANCY</p><p><b>Given</b>: Yes</p><p><b>Administered by</b>: Graham, Joshua</p><p><b>Reported</b>: Yes</p></div>'
},
'status': 'completed',
'date': '1982',
'vaccineCode': {
'coding': [
{
'system': 'http://hl7.org/fhir/sid/cvx',
'code': '112',
'display': 'tetanus toxoid, unspecified formulation',
'userSelected': false
}
],
'text': 'tetanus toxoid'
},
'patient': {
'reference': 'Patient/12724066',
'display': 'SMART, NANCY'
},
'wasNotGiven': false,
'reported': true,
'performer': {
'reference': 'Practitioner/12724045',
'display': 'Graham, Joshua'
},
'encounter': {
'reference': 'Encounter/97939518'
},
'location': {
'reference': 'Location/32545019',
'display': 'A'
},
'doseQuantity': {
'value': 0.0,
'unit': 'unknown unit',
'system': 'http://unitsofmeasure.org',
'code': '{unknownunit}'
}
}
}
Headers
-
X-Request-Id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
X-Request-Id
, if present. -
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
opc-Request-Id
, if present.