GET TimeTrackingProject/GetProjectSummary/{id}?methodId={methodId}
Get project summary by duration specified by the methodId. The methodId has options of 1 for daily, 2 for weekly and 3 for monthly. Currently only daily and monthly (i.e. 1 and 3 respectively) are supported.
Request Information
URI Parameters
| Name | Type | Additional information | Description |
|---|---|---|---|
| id | integer |
Required |
Project Id |
| methodId | integer |
Required |
The duration of the report (i.e. daily=1, weekly=2 or monthly=3). |
Body Parameters
None.
Response Information
Resource Description
Collection of Time Tracking Project Summary| Name | Type | Additional information | Description |
|---|---|---|---|
| BillableHours | decimal |
None. |
|
| NonBillableHours | decimal |
None. |
|
| DayPart | integer |
None. |
|
| MonthWeekPart | integer |
None. |
|
| YearPart | integer |
None. |
|
| Date | nullable date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BillableHours": 1.0,
"NonBillableHours": 2.0,
"DayPart": 3,
"MonthWeekPart": 4,
"YearPart": 5,
"Date": "2025-12-21"
},
{
"BillableHours": 1.0,
"NonBillableHours": 2.0,
"DayPart": 3,
"MonthWeekPart": 4,
"YearPart": 5,
"Date": "2025-12-21"
}
]