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

NameTypeAdditional informationDescription
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
NameTypeAdditional informationDescription
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": "2024-03-30T00:00:00+10:00"
  },
  {
    "BillableHours": 1.0,
    "NonBillableHours": 2.0,
    "DayPart": 3,
    "MonthWeekPart": 4,
    "YearPart": 5,
    "Date": "2024-03-30T00:00:00+10:00"
  }
]