GET/people/{id}/loggedtime.json
Get Logged Time by Person
Total billable and non billable time per user.
Path Params
- Name
id
- Type
- string
- required
- Description
Query Params
- Name
m
- Type
- string
- Description
Month of the year. Needs to be used with 'y' param in order to work.
- Name
y
- Type
- string
- Description
year
- Default
YYYY
- 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
- Default
1
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
application/json
{
"STATUS": "OK",
"user": {
"billable": [],
"firstname": "1",
"nonbillable": [],
"endepoch": "1525046400000",
"id": "1",
"startepoch": "1522540800000",
"lastname": "1"
}
}