GET api/Bulls/{bullId}
Gets 1 Bull by Borg EMS ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| bullId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Bull| Name | Description | Type | Additional information |
|---|---|---|---|
| Bull_ID | integer |
None. |
|
| BullName | string |
None. |
|
| BullNo | string |
None. |
|
| Brand | string |
None. |
|
| Stock_Contractor_ID | integer |
None. |
|
| StockContractorName | string |
None. |
|
| StockContractorCd | string |
None. |
|
| Weight | integer |
None. |
|
| Delivery | string |
None. |
|
| BirthDt | date |
None. |
|
| RetireDt | date |
None. |
|
| DeathDt | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Bull_ID": 1,
"BullName": "sample string 2",
"BullNo": "sample string 3",
"Brand": "sample string 4",
"Stock_Contractor_ID": 1,
"StockContractorName": "sample string 5",
"StockContractorCd": "sample string 6",
"Weight": 1,
"Delivery": "sample string 7",
"BirthDt": "2025-11-08T02:00:01.1738822-08:00",
"RetireDt": "2025-11-08T02:00:01.1738822-08:00",
"DeathDt": "2025-11-08T02:00:01.1738822-08:00"
}
application/xml, text/xml
Sample:
<Bull xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBR_API.Models"> <BirthDt>2025-11-08T02:00:01.1738822-08:00</BirthDt> <Brand>sample string 4</Brand> <BullName>sample string 2</BullName> <BullNo>sample string 3</BullNo> <Bull_ID>1</Bull_ID> <DeathDt>2025-11-08T02:00:01.1738822-08:00</DeathDt> <Delivery>sample string 7</Delivery> <RetireDt>2025-11-08T02:00:01.1738822-08:00</RetireDt> <StockContractorCd>sample string 6</StockContractorCd> <StockContractorName>sample string 5</StockContractorName> <Stock_Contractor_ID>1</Stock_Contractor_ID> <Weight>1</Weight> </Bull>