GET PlanCare2Api/MedicalVaccination/ActualValue?relationId={relationId}

Gets the actual MedicalVaccinationSummary of the specified relation.

Relation(s) must be of the following type: Client

Requires 'Read' permission for function MedicalVaccination {D0D9C9C6-5EA5-45CB-8AC2-24D6EEF784CF}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
relationId

The id of the relation.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Actual MedicalVaccinationSummary.

MedicalVaccinationSummary
NameDescriptionTypeAdditional information
MedicalCodeProductCodeDescription

ProductCode.

string

None.

Dose

Dose in milliliters.

decimal number

None.

AdministeredBy

AdministeredBy.

string

None.

VaccinationDates

VaccinationDates.

Collection of MedicalVaccinationDate

None.

ReVaccinationDate

ReVaccinationDate.

date

None.

Remarks

Remarks.

string

None.

Id

Id of the registration.

integer

None.

RegistrationDateTime

DateTime of measurement.

date

None.

Source

Source of registration (example: name of the questionnaire).

string

None.

ChangedOn

DateTime when registration is last changed (readOnly).

date

None.

ChangedByRelationLookupName

LookupName of the relation who made the change (readOnly).

string

None.

TextValue

The compound value of the registration (readOnly).

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MedicalCodeProductCodeDescription": "sample string 1",
  "Dose": 2.0,
  "AdministeredBy": "sample string 3",
  "VaccinationDates": [
    {
      "$id": "2",
      "Id": 1,
      "VaccinationDate": "2026-05-26T22:10:01.0907703+02:00"
    },
    {
      "$ref": "2"
    }
  ],
  "ReVaccinationDate": "2026-05-26T22:10:01.0907703+02:00",
  "Remarks": "sample string 4",
  "Id": 5,
  "RegistrationDateTime": "2026-05-26T22:10:01.0907703+02:00",
  "Source": "sample string 7",
  "ChangedOn": "2026-05-26T22:10:01.0907703+02:00",
  "ChangedByRelationLookupName": "sample string 9",
  "TextValue": "sample string 10"
}

application/xml, text/xml

Sample:
<MedicalVaccinationSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Medical">
  <ChangedByRelationLookupName>sample string 9</ChangedByRelationLookupName>
  <ChangedOn>2026-05-26T22:10:01.0907703+02:00</ChangedOn>
  <Id>5</Id>
  <RegistrationDateTime>2026-05-26T22:10:01.0907703+02:00</RegistrationDateTime>
  <Source>sample string 7</Source>
  <TextValue>sample string 10</TextValue>
  <AdministeredBy>sample string 3</AdministeredBy>
  <Dose>2</Dose>
  <MedicalCodeProductCodeDescription>sample string 1</MedicalCodeProductCodeDescription>
  <ReVaccinationDate>2026-05-26T22:10:01.0907703+02:00</ReVaccinationDate>
  <Remarks>sample string 4</Remarks>
  <VaccinationDates>
    <MedicalVaccinationDate>
      <Id>1</Id>
      <VaccinationDate>2026-05-26T22:10:01.0907703+02:00</VaccinationDate>
    </MedicalVaccinationDate>
    <MedicalVaccinationDate>
      <Id>1</Id>
      <VaccinationDate>2026-05-26T22:10:01.0907703+02:00</VaccinationDate>
    </MedicalVaccinationDate>
  </VaccinationDates>
</MedicalVaccinationSummary>