GET api/FarmIncubators?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FarmIncubatorListView| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| IncubatorTypeId | integer |
None. |
|
| FarmId | integer |
None. |
|
| IncubatorName | string |
None. |
|
| NumberOfSetterTray | integer |
None. |
|
| NumberOfHatcherTray | integer |
None. |
|
| MaxCapacitySetter | integer |
None. |
|
| MaxCapacityHatcher | integer |
None. |
|
| IsAuto | boolean |
None. |
|
| CreatedAt | date |
None. |
|
| UpdatedAt | date |
None. |
|
| DeletedAt | date |
None. |
|
| DeletedBy | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
|
| DeletedStatus | boolean |
None. |
|
| FarmName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"IncubatorTypeId": 2,
"FarmId": 3,
"IncubatorName": "sample string 4",
"NumberOfSetterTray": 5,
"NumberOfHatcherTray": 6,
"MaxCapacitySetter": 7,
"MaxCapacityHatcher": 8,
"IsAuto": true,
"CreatedAt": "2025-12-06T10:22:00.7402688+06:00",
"UpdatedAt": "2025-12-06T10:22:00.7402688+06:00",
"DeletedAt": "2025-12-06T10:22:00.7402688+06:00",
"DeletedBy": 12,
"CreatedBy": 13,
"UpdatedBy": 14,
"DeletedStatus": true,
"FarmName": "sample string 16"
}
application/xml, text/xml
Sample:
<FarmIncubatorListView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.ViewModels"> <CreatedAt>2025-12-06T10:22:00.7402688+06:00</CreatedAt> <CreatedBy>13</CreatedBy> <DeletedAt>2025-12-06T10:22:00.7402688+06:00</DeletedAt> <DeletedBy>12</DeletedBy> <DeletedStatus>true</DeletedStatus> <FarmId>3</FarmId> <FarmName>sample string 16</FarmName> <Id>1</Id> <IncubatorName>sample string 4</IncubatorName> <IncubatorTypeId>2</IncubatorTypeId> <IsAuto>true</IsAuto> <MaxCapacityHatcher>8</MaxCapacityHatcher> <MaxCapacitySetter>7</MaxCapacitySetter> <NumberOfHatcherTray>6</NumberOfHatcherTray> <NumberOfSetterTray>5</NumberOfSetterTray> <UpdatedAt>2025-12-06T10:22:00.7402688+06:00</UpdatedAt> <UpdatedBy>14</UpdatedBy> </FarmIncubatorListView>