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": "501efb77-b9f1-4a3c-83c6-3bc3d6f9b644",
"Cost": 1.0,
"DateOfBirth": "2026-08-15T11:00:57.404844+01:00",
"DateOfBirthExact": true,
"GenderId": "e6742212-315e-4f28-9752-71ac334ed180",
"HadPriorThirdPartyLiabilityClaim": true,
"Id": "1a20f710-a8a4-4f7d-ac08-7668d00dc125",
"IllnessOrInjury": true,
"LastVaccinatedDate": "2026-08-15T11:00:57.404844+01:00",
"MicrochipNumber": "sample string 7",
"Name": "sample string 8",
"PolicyStartDate": "2026-08-15T11:00:57.404844+01:00",
"PetSizeId": "0f64f627-e959-4223-b467-636bd78b5b6b",
"SpeciesId": "8435120a-88ec-4db2-9a58-b1e8d76ce6cb",
"Vaccinated": true,
"VetId": "1347b94e-e052-46ec-bb50-1ed9b63a7a11",
"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>501efb77-b9f1-4a3c-83c6-3bc3d6f9b644</BreedId> <Cost>1</Cost> <DateOfBirth>2026-08-15T11:00:57.404844+01:00</DateOfBirth> <DateOfBirthExact>true</DateOfBirthExact> <GenderId>e6742212-315e-4f28-9752-71ac334ed180</GenderId> <HadPriorThirdPartyLiabilityClaim>true</HadPriorThirdPartyLiabilityClaim> <Id>1a20f710-a8a4-4f7d-ac08-7668d00dc125</Id> <IllnessOrInjury>true</IllnessOrInjury> <IsNextVacVetChecked>true</IsNextVacVetChecked> <LastVaccinatedDate>2026-08-15T11:00:57.404844+01:00</LastVaccinatedDate> <MicrochipNumber>sample string 7</MicrochipNumber> <Name>sample string 8</Name> <PetSizeId>0f64f627-e959-4223-b467-636bd78b5b6b</PetSizeId> <PolicyStartDate>2026-08-15T11:00:57.404844+01:00</PolicyStartDate> <SpeciesId>8435120a-88ec-4db2-9a58-b1e8d76ce6cb</SpeciesId> <Vaccinated>true</Vaccinated> <VetChecked>true</VetChecked> <VetId>1347b94e-e052-46ec-bb50-1ed9b63a7a11</VetId> </Pet>