GET api/Breed/List?speciesId={speciesId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
speciesId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BreedName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Name | string |
None. |
|
SpeciesId | globally unique identifier |
None. |
|
BreedGroupId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "ebee8794-5292-4754-bbaf-ffc84a5c88f4", "Name": "sample string 2", "SpeciesId": "f77a9aac-8530-4424-a3d0-dac8128821da", "BreedGroupId": "41747edd-ede8-4ce1-b6d1-720b3980e524" }, { "Id": "ebee8794-5292-4754-bbaf-ffc84a5c88f4", "Name": "sample string 2", "SpeciesId": "f77a9aac-8530-4424-a3d0-dac8128821da", "BreedGroupId": "41747edd-ede8-4ce1-b6d1-720b3980e524" } ]
application/xml, text/xml
Sample:
<ArrayOfBreed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <Breed> <BreedGroupId>41747edd-ede8-4ce1-b6d1-720b3980e524</BreedGroupId> <Id>ebee8794-5292-4754-bbaf-ffc84a5c88f4</Id> <Name>sample string 2</Name> <SpeciesId>f77a9aac-8530-4424-a3d0-dac8128821da</SpeciesId> </Breed> <Breed> <BreedGroupId>41747edd-ede8-4ce1-b6d1-720b3980e524</BreedGroupId> <Id>ebee8794-5292-4754-bbaf-ffc84a5c88f4</Id> <Name>sample string 2</Name> <SpeciesId>f77a9aac-8530-4424-a3d0-dac8128821da</SpeciesId> </Breed> </ArrayOfBreed>