GET api/Breeder/LookupPetClubsPet?registrationNumber={registrationNumber}&speciesId={speciesId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
registrationNumber

string

Required

speciesId

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

Pet
NameDescriptionTypeAdditional information
IsNextVacVetChecked

boolean

None.

BreedId

globally unique identifier

None.

Cost

decimal number

None.

DateOfBirth

date

None.

DateOfBirthExact

boolean

None.

GenderId

globally unique identifier

None.

HadPriorThirdPartyLiabilityClaim

boolean

None.

Id

globally unique identifier

None.

IllnessOrInjury

boolean

None.

LastVaccinatedDate

date

None.

MicrochipNumber

string

None.

Name

string

None.

PolicyStartDate

date

None.

PetSizeId

globally unique identifier

None.

SpeciesId

globally unique identifier

None.

Vaccinated

boolean

None.

VetId

globally unique identifier

None.

VetChecked

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsNextVacVetChecked": true,
  "BreedId": "473e3675-1cd6-4550-bbac-e5ceaacf651e",
  "Cost": 1.0,
  "DateOfBirth": "2025-07-07T15:36:31.8501584+01:00",
  "DateOfBirthExact": true,
  "GenderId": "e8b4d10d-5b17-488e-a01f-633ffd7f00a6",
  "HadPriorThirdPartyLiabilityClaim": true,
  "Id": "b510ac18-0700-481e-80ae-95752c33e577",
  "IllnessOrInjury": true,
  "LastVaccinatedDate": "2025-07-07T15:36:31.8501584+01:00",
  "MicrochipNumber": "sample string 7",
  "Name": "sample string 8",
  "PolicyStartDate": "2025-07-07T15:36:31.8501584+01:00",
  "PetSizeId": "df0e9768-d029-46d2-a281-4a7bd4b51982",
  "SpeciesId": "6304260b-c865-46e4-87f7-ce4a289979e8",
  "Vaccinated": true,
  "VetId": "2837ea52-9390-411e-ae36-47f6fa8e4036",
  "VetChecked": true
}

application/xml, text/xml

Sample:
<Pet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models">
  <BreedId>473e3675-1cd6-4550-bbac-e5ceaacf651e</BreedId>
  <Cost>1</Cost>
  <DateOfBirth>2025-07-07T15:36:31.8501584+01:00</DateOfBirth>
  <DateOfBirthExact>true</DateOfBirthExact>
  <GenderId>e8b4d10d-5b17-488e-a01f-633ffd7f00a6</GenderId>
  <HadPriorThirdPartyLiabilityClaim>true</HadPriorThirdPartyLiabilityClaim>
  <Id>b510ac18-0700-481e-80ae-95752c33e577</Id>
  <IllnessOrInjury>true</IllnessOrInjury>
  <IsNextVacVetChecked>true</IsNextVacVetChecked>
  <LastVaccinatedDate>2025-07-07T15:36:31.8501584+01:00</LastVaccinatedDate>
  <MicrochipNumber>sample string 7</MicrochipNumber>
  <Name>sample string 8</Name>
  <PetSizeId>df0e9768-d029-46d2-a281-4a7bd4b51982</PetSizeId>
  <PolicyStartDate>2025-07-07T15:36:31.8501584+01:00</PolicyStartDate>
  <SpeciesId>6304260b-c865-46e4-87f7-ce4a289979e8</SpeciesId>
  <Vaccinated>true</Vaccinated>
  <VetChecked>true</VetChecked>
  <VetId>2837ea52-9390-411e-ae36-47f6fa8e4036</VetId>
</Pet>