POST api/TodaysActivities/PagedList
Request Information
URI Parameters
None.
Body Parameters
ActivityRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| From | date |
None. |
|
| To | date |
None. |
|
| FarmId | integer |
None. |
|
| UserId | integer |
None. |
|
| BatchName | string |
None. |
|
| UserName | string |
None. |
|
| CurrentPage | integer |
None. |
|
| PerPageCount | integer |
None. |
|
| OrderBy | string |
None. |
|
| IsAscending | boolean |
None. |
|
| Keyword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"From": "2025-12-06T10:23:18.1319489+06:00",
"To": "2025-12-06T10:23:18.1319489+06:00",
"FarmId": 1,
"UserId": 1,
"BatchName": "sample string 1",
"UserName": "sample string 2",
"CurrentPage": 3,
"PerPageCount": 4,
"OrderBy": "sample string 5",
"IsAscending": true,
"Keyword": "sample string 7"
}
application/xml, text/xml
Sample:
<ActivityRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.RequestModel"> <CurrentPage>3</CurrentPage> <IsAscending>true</IsAscending> <Keyword>sample string 7</Keyword> <OrderBy>sample string 5</OrderBy> <PerPageCount>4</PerPageCount> <BatchName>sample string 1</BatchName> <FarmId>1</FarmId> <From>2025-12-06T10:23:18.1319489+06:00</From> <To>2025-12-06T10:23:18.1319489+06:00</To> <UserId>1</UserId> <UserName>sample string 2</UserName> </ActivityRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.