GET api/Horse/GetHorseVaccineInfoByID?vaccineId={vaccineId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
vaccineId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of HorseVaccination
NameDescriptionTypeAdditional information
VacID

integer

None.

PersonID

integer

None.

HorseID

integer

None.

Comments

string

None.

Cost

string

None.

DateGiven

date

None.

VacGivenID

integer

None.

CategoryID

integer

None.

SubCategoryID

integer

None.

SubCategoryName

string

None.

ContactID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "VacID": 1,
    "PersonID": 2,
    "HorseID": 3,
    "Comments": "sample string 4",
    "Cost": "sample string 5",
    "DateGiven": "2025-07-28T14:00:28.0760683-07:00",
    "VacGivenID": 6,
    "CategoryID": 7,
    "SubCategoryID": 8,
    "SubCategoryName": "sample string 9",
    "ContactID": 10
  },
  {
    "VacID": 1,
    "PersonID": 2,
    "HorseID": 3,
    "Comments": "sample string 4",
    "Cost": "sample string 5",
    "DateGiven": "2025-07-28T14:00:28.0760683-07:00",
    "VacGivenID": 6,
    "CategoryID": 7,
    "SubCategoryID": 8,
    "SubCategoryName": "sample string 9",
    "ContactID": 10
  }
]

application/xml, text/xml

Sample:
<ArrayOfHorseVaccination xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Equestrian.Entities">
  <HorseVaccination>
    <CategoryID>7</CategoryID>
    <Comments>sample string 4</Comments>
    <ContactID>10</ContactID>
    <Cost>sample string 5</Cost>
    <DateGiven>2025-07-28T14:00:28.0760683-07:00</DateGiven>
    <HorseID>3</HorseID>
    <PersonID>2</PersonID>
    <SubCategoryID>8</SubCategoryID>
    <SubCategoryName>sample string 9</SubCategoryName>
    <VacGivenID>6</VacGivenID>
    <VacID>1</VacID>
  </HorseVaccination>
  <HorseVaccination>
    <CategoryID>7</CategoryID>
    <Comments>sample string 4</Comments>
    <ContactID>10</ContactID>
    <Cost>sample string 5</Cost>
    <DateGiven>2025-07-28T14:00:28.0760683-07:00</DateGiven>
    <HorseID>3</HorseID>
    <PersonID>2</PersonID>
    <SubCategoryID>8</SubCategoryID>
    <SubCategoryName>sample string 9</SubCategoryName>
    <VacGivenID>6</VacGivenID>
    <VacID>1</VacID>
  </HorseVaccination>
</ArrayOfHorseVaccination>