---
title: "PUT /api/Vaccinations/{id}"
method: PUT
path: "/api/Vaccinations/{id}"
tags: ["Vaccinations"]
---

# PUT /api/Vaccinations/{id}

`PUT /api/Vaccinations/{id}`

## Path parameters

- `id` string, required

## Request body

- UpdateVaccinationRecordRequest — Request to update an existing vaccination record
  - `vaccineTypeId` string, nullable
  - `administeredDate` string, date-time, nullable
  - `expirationDate` string, date-time, nullable
  - `vaccineExpirationDate` string, date-time, nullable — Physical vaccine vial/lot expiration date (distinct from the next-due DateTime? UpdateVaccinationRecordRequest.ExpirationDate).
  - `lotNumber` string, nullable
  - `manufacturer` string, nullable
  - `route` string, nullable
  - `site` string, nullable
  - `administeredById` string, nullable — Reassign who physically gave the dose. Null = leave unchanged; to CLEAR back to "not recorded / external", set bool UpdateVaccinationRecordRequest.NoAdministeredBy.
  - `noAdministeredBy` boolean — True = clear the administering staff member to "not recorded / external". Wins over string? UpdateVaccinationRecordRequest.AdministeredById.
  - `doctorOfRecordId` string, nullable — Reassign the DVM of record. Null = leave unchanged; to CLEAR to "no doctor", set bool UpdateVaccinationRecordRequest.NoDoctorOfRecord.
  - `noDoctorOfRecord` boolean — True = clear the doctor of record (dose certifies unsigned). Wins over string? UpdateVaccinationRecordRequest.DoctorOfRecordId.
  - `notes` string, nullable

## Response `200`

OK

- VaccinationRecordDto — Vaccination record with related entities
  - `id` string
  - `patientId` string
  - `appointmentId` string, nullable
  - `vaccineType` VaccineTypeSummaryDto — Vaccine type summary for dropdowns and lists
    - `id` string
    - `code` string
    - `name` string
    - `species` string
    - `isCore` boolean
    - `isRabies` boolean
  - `administeredDate` string, date-time
  - `expirationDate` string, date-time, nullable — Next-due date (when the current dose lapses). Not the vial expiry — see DateTime? VaccinationRecordDto.VaccineExpirationDate.
  - `vaccineExpirationDate` string, date-time, nullable — Physical vaccine vial/lot expiration date (distinct from the next-due DateTime? VaccinationRecordDto.ExpirationDate).
  - `administeredBy` UserSummaryDto
    - `id` string
    - `email` string
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `displayName` string, nullable
    - `type` string
    - `roleId` string, nullable
    - `roleName` string, nullable
  - `doctorOfRecord` UserSummaryDto
    - `id` string
    - `email` string
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `displayName` string, nullable
    - `type` string
    - `roleId` string, nullable
    - `roleName` string, nullable
  - `lotNumber` string, nullable
  - `manufacturer` string, nullable
  - `route` string, nullable
  - `site` string, nullable
  - `notes` string, nullable
  - `inventoryTransactionId` string, nullable
  - `scheduleStageSequence` union — Schedule stage this dose was resolved to at administration (1 = first dose / series restart); null for legacy records.
    - integer
    - string, int32
  - `hasUnresolvedLot` boolean — True when the underlying inventory lot is a temporary placeholder awaiting resolution. Certificate generation is blocked while this is true.
  - `isVoided` boolean — True when the dose was retracted (billing line voided, or a mis-entry corrected). The record stays on the chart for audit but is not a valid dose: it drives no reminders, does not count toward vaccination status or schedule stage, and cannot be certified. Render it struck through.
  - `voidedAt` string, date-time, nullable
  - `voidedBy` UserSummaryDto
    - `id` string
    - `email` string
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `displayName` string, nullable
    - `type` string
    - `roleId` string, nullable
    - `roleName` string, nullable
  - `voidReason` string, nullable
  - `createdAt` string, date-time
  - `updatedAt` string, date-time

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/versions/a905bde4e796/schema)
