# Get Immunization Recommendation List

# Get Immunization Recommendation List :

Endpoint : GET /v1/ImmunizationRecommendation

  • This is to fetch all records of this resource.

Endpoint : GET /v1/ImmunizationRecommendation?patient=1212,1111,9898

  • This will fetch all ImmunizationRecommendation resource of given patients.

# Query params :

# Response body

{
  "status": 1,
  "message": "Data fetched",
  "total": 2,
  "data": [
    {
      "patientId" : 1
      "vaccine": "Bacillus Calmette-Guerin vaccine",
      "vaccineText" : "BCG",
      "vaccineCode" : "19",
      "seriesDoses": 3,
      "doseNumber" : 1,
      "vaccineStartDate" : "2025-03-10T10:15:30.123Z",
      "vaccineEndDate" : "2025-04-10T10:15:30.123Z",
      "vaccineBufferDate" : "2025-06-02T10:15:30.123Z"
      "vaccineDueDate" : "2025-04-10T10:15:30.123Z"
    },
    {
      "patientId" : 1
      "vaccine": "Bacillus Calmette-Guerin vaccine",
      "vaccineText" : "BCG",
      "vaccineCode" : "19",
      "seriesDoses": 3,
      "doseNumber" : 2,
      "vaccineStartDate" : "2025-03-10T10:15:30.123Z",
      "vaccineEndDate" : "2025-04-10T10:15:30.123Z",
      "vaccineBufferDate" : "2025-06-02T10:15:30.123Z",
      "vaccineDueDate" : "2025-04-10T10:15:30.123Z"
    }
  ]
}