POST api/activity/GetRunSheets
Request Information
URI Parameters
None.
Body Parameters
RunSheetSearchRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| AssignedToId | integer |
None. |
|
| CreatedById | integer |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| SkipCount | integer |
None. |
|
| MaxResultCount | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"AssignedToId": 1,
"CreatedById": 1,
"FromDate": "2026-02-03T07:30:50.5319043-08:00",
"ToDate": "2026-02-03T07:30:50.5319043-08:00",
"SkipCount": 1,
"MaxResultCount": 1
}
application/xml, text/xml
Sample:
<RunSheetSearchRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MayaserSolutions.Domain"> <MaxResultCount>1</MaxResultCount> <SkipCount>1</SkipCount> <FromDate>2026-02-03T07:30:50.5319043-08:00</FromDate> <ToDate>2026-02-03T07:30:50.5319043-08:00</ToDate> <AssignedToId>1</AssignedToId> <CreatedById>1</CreatedById> <Id>sample string 1</Id> </RunSheetSearchRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PagedResultDtoOfActivityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Items | Collection of ActivityDto |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.