GET api/Breeder/LookupPetClubsPet?registrationNumber={registrationNumber}&speciesId={speciesId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| registrationNumber | string |
Required |
|
| speciesId | globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
Pet| Name | Description | Type | Additional 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": "81a4efbb-5081-43ff-8e00-72cca4686d66",
"Cost": 1.0,
"DateOfBirth": "2026-02-04T01:10:59.1619629+00:00",
"DateOfBirthExact": true,
"GenderId": "c128a931-b9e5-4329-8baa-4aeb216d61e3",
"HadPriorThirdPartyLiabilityClaim": true,
"Id": "4bafcebc-45d8-49da-b307-d379493df116",
"IllnessOrInjury": true,
"LastVaccinatedDate": "2026-02-04T01:10:59.1619629+00:00",
"MicrochipNumber": "sample string 7",
"Name": "sample string 8",
"PolicyStartDate": "2026-02-04T01:10:59.1619629+00:00",
"PetSizeId": "60d043d7-2db2-418e-beba-3ec603c4100a",
"SpeciesId": "d3b03e63-1256-4b09-aafd-adcca0510a76",
"Vaccinated": true,
"VetId": "dd60f546-e0ee-4855-9e34-6afc9ef2c93f",
"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>81a4efbb-5081-43ff-8e00-72cca4686d66</BreedId> <Cost>1</Cost> <DateOfBirth>2026-02-04T01:10:59.1619629+00:00</DateOfBirth> <DateOfBirthExact>true</DateOfBirthExact> <GenderId>c128a931-b9e5-4329-8baa-4aeb216d61e3</GenderId> <HadPriorThirdPartyLiabilityClaim>true</HadPriorThirdPartyLiabilityClaim> <Id>4bafcebc-45d8-49da-b307-d379493df116</Id> <IllnessOrInjury>true</IllnessOrInjury> <IsNextVacVetChecked>true</IsNextVacVetChecked> <LastVaccinatedDate>2026-02-04T01:10:59.1619629+00:00</LastVaccinatedDate> <MicrochipNumber>sample string 7</MicrochipNumber> <Name>sample string 8</Name> <PetSizeId>60d043d7-2db2-418e-beba-3ec603c4100a</PetSizeId> <PolicyStartDate>2026-02-04T01:10:59.1619629+00:00</PolicyStartDate> <SpeciesId>d3b03e63-1256-4b09-aafd-adcca0510a76</SpeciesId> <Vaccinated>true</Vaccinated> <VetChecked>true</VetChecked> <VetId>dd60f546-e0ee-4855-9e34-6afc9ef2c93f</VetId> </Pet>