POST TimeTrackingTimesheet/GetTimesheetSummaryDetail
Gets the timesheet summary detail. The request model type can be either Customers=1, Projects=2, Tasks=3 or Users=4. The dateRangeType can be either All=0, Monthly=1, Weekly=2 or Daily=3
Request Information
This method supports OData queries.
URI Parameters
None.
Body Parameters
The request model.
Time Tracking Summary Entry Request Model| Name | Type | Additional information | Description |
|---|---|---|---|
| Type | integer |
Required |
|
| Date | date |
Required |
|
| RangeType | integer |
Required |
|
| CustomerId | nullable integer |
None. |
|
| ProjectId | nullable integer |
None. |
|
| TaskId | nullable integer |
None. |
|
| FilterId | nullable integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Type": 1,
"Date": "2025-12-20",
"RangeType": 3,
"CustomerId": 1,
"ProjectId": 1,
"TaskId": 1,
"FilterId": 1
}
Response Information
Resource Description
This collection is wrapped in a paging response object.
Paging response of Time Tracking Summary Entry| Name | Type | Additional information | Description |
|---|---|---|---|
| TotalResults | integer |
None. |
|
| ReturnedResults | integer |
None. |
|
| Results | Collection of Time Tracking Summary Entry |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalResults": 1,
"ReturnedResults": 2,
"Results": [
{
"ID": 1,
"Name": "sample string 2",
"Email": "sample string 3",
"LastTimesheetEntry": "2025-12-20",
"HoursCaptured": 5.0,
"BillableHours": 6.0,
"BillableAmount": 7.0,
"WrittenOffHours": 1.0,
"WrittenOffAmount": 1.0,
"InvoicedAmount": 1.0,
"InvoicedDate": "2025-12-20",
"LinkedDocumentHeaderId": 1,
"LinkedDocumentTypeId": 1,
"LinkedDocumentNumber": "sample string 8",
"BillingMethodId": 9
},
{
"ID": 1,
"Name": "sample string 2",
"Email": "sample string 3",
"LastTimesheetEntry": "2025-12-20",
"HoursCaptured": 5.0,
"BillableHours": 6.0,
"BillableAmount": 7.0,
"WrittenOffHours": 1.0,
"WrittenOffAmount": 1.0,
"InvoicedAmount": 1.0,
"InvoicedDate": "2025-12-20",
"LinkedDocumentHeaderId": 1,
"LinkedDocumentTypeId": 1,
"LinkedDocumentNumber": "sample string 8",
"BillingMethodId": 9
}
]
}