GET api/BatchActionDoneHistories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of BatchActionDoneHistory| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| BatchInfoId | integer |
None. |
|
| ActionId | integer |
None. |
|
| ActionType | string |
None. |
|
| DoneStatus | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"BatchInfoId": 2,
"ActionId": 3,
"ActionType": "sample string 4",
"DoneStatus": 5
},
{
"Id": 1,
"BatchInfoId": 2,
"ActionId": 3,
"ActionType": "sample string 4",
"DoneStatus": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfBatchActionDoneHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.Models">
<BatchActionDoneHistory>
<ActionId>3</ActionId>
<ActionType>sample string 4</ActionType>
<BatchInfoId>2</BatchInfoId>
<DoneStatus>5</DoneStatus>
<Id>1</Id>
</BatchActionDoneHistory>
<BatchActionDoneHistory>
<ActionId>3</ActionId>
<ActionType>sample string 4</ActionType>
<BatchInfoId>2</BatchInfoId>
<DoneStatus>5</DoneStatus>
<Id>1</Id>
</BatchActionDoneHistory>
</ArrayOfBatchActionDoneHistory>