Immunization Reponse
Possible status codes:
Status code 200 - success - the resource information is in the body as shown below.
Status code 400 - bad request - one or more request parameters was invalid.
Status code 401 - unauthorized (a valid bearer token is required).
Status code 404 - not found (the resource specified was not found).
Status code 500 - internal error.
Examples:
Request: GET /Immunization/1003
Response:
{
"resourceType": "Immunization",
"id": "1003",
"status": "completed",
"statusReason": {
"coding": [
{
"system": "http://hl7.org/fhir/ValueSet/immunization-status-reason"
}
]
},
"vaccineCode": {
"coding": [
{
"system": "https://vsac.nlm.nih.gov/valueset/2.16.840.1.113762.1.4.1010.6",
"code": "115"
}
],
"text": "Tdap"
},
"occurrenceDateTime": "2016-10-10",
"primarySource": true
}