Time Totals on a Project
Path Params
- Name
id
- Type
- string
- required
- Description
Query Params
- Name
fromDate
- Type
- string
- Description
string (YYYYMMDD) - The start date to retrieve from
- Name
fromTime
- Type
- string
- Description
string (HH:MM) - The start time only if fromdate is passed
- Name
toDate
- Type
- string
- Description
string (YYYYMMDD) - The end date to retrieve to
- Name
toTime
- Type
- string
- Description
string (HH:MM) - The end time only if todate is passed
- Name
userId
- Type
- integer
- Description
Return time logs for a specific user only
- Name
projectType
- Type
- string
- Description
string (all, active, archived) - Filter the time entries to those in Active projects, Archived projects or All projects.
- Name
page
- Type
- integer
- Description
Optionally, you can set the page from which to start retrieving results. This is usually used in conjunction with the parameter pageSize.
See How does paging work for more detailed documentation on pagination. For example: ?page=2&pageSize=10 will retrieve results 10-20.
- Name
pageSize
- Type
- integer
- Description
The amount of time entries returned can be limited using this parameter. Normally used in conjunction with the page parameter.
Minimum: 1 Maximum: 1
- Default
1
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
{
"STATUS": "OK",
"projects": [
{
"company": {
"name": "Marketing Ltd.",
"id": "1"
},
"time-estimates": {
"filtered-estimated-hours-sum": "0.00",
"total-hours-estimated": "0.00",
"active-mins-estimated": "0",
"total-mins-estimated": "0",
"totalWithTimeLoggedEstimatedMins": "0",
"active-hours-estimated": "0.00",
"filtered-estimated-mins-sum": "0",
"completed-hours-estimated": "0.00",
"completed-mins-estimated": "0",
"totalWithTimeLoggedEstimatedDecimal": "0.00"
},
"name": "hollys project",
"id": "1",
"time-totals": {
"total-mins-sum": "0",
"non-billed-mins-sum": "0",
"filtered-estimated-hours-sum": "0.00",
"non-billable-hours-sum": "0.00",
"total-hours-sum": "0.00",
"billed-mins-sum": "0",
"billed-hours-sum": "0.00",
"billable-hours-sum": "0.00",
"filtered-estimated-mins-sum": "0",
"non-billable-mins-sum": "0",
"non-billed-hours-sum": "0.00",
"billable-mins-sum": "0"
}
}
]
}