For AI agents: a documentation index is available at the root level at /llms.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Returns time entries in the workspace. The result includes entries the current user is allowed to view.
<Check title="Required Permissions" icon="key">The user must own the time entry or have `project-timetracking:read` permission for connected project entries.</Check>
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Query parameters
searchReindexbooleanOptionalDefaults to false
Whether to reindex for search.
pageintegerOptionalDefaults to 1
Page number for pagination
pageSizeintegerOptionalDefaults to 10
Number of items per page
orderbystringOptional
The properties to order by
filterbystringOptional
The filter expression to filter by
Response
OK
timezonestring>=1 character
The original timezone of the time tracking.
The format of the timezone is the IANA standard.
typeOfWorkIdstringformat: "uuid"
The id of the type of work.
isBillablebooleanOptional
Whether the time tracking is billable or not.
isBilledbooleanOptional
Whether the time tracking is billed or not.
taskIdstring or nullOptionalformat: "uuid"
The id of the task.
projectIdstring or nullOptionalformat: "uuid"
The id of the project.
notestring or nullOptional
The note of the time tracking.
startDateUtcstring or nullOptionalformat: "date-time"
The date (in UTC) when the time tracking was started.
startTimeUtcstring or nullOptional
The time (in UTC) when the time tracking was started.
endDateUtcstring or nullOptionalformat: "date-time"
The date (in UTC) when the time tracking was stopped.
endTimeUtcstring or nullOptional
The time (in UTC) when the time tracking was stopped.
Required when the time tracking has already been completed and Duration has not been set.
startDateLocalstring or nullOptionalformat: "date-time"
The date (in Local) when the time tracking was started.
startTimeLocalstring or nullOptional
The time (in Local) when the time tracking was started.
endDateLocalstring or nullOptionalformat: "date-time"
The date (in Local) when the time tracking was stopped.
endTimeLocalstring or nullOptional
The time (in Local) when the time tracking was stopped.
Required when the time tracking has already been completed and Duration has not been set.
durationinteger or nullOptional
The duration of the time tracking in seconds.
Required when the time tracking has already been completed and EndTime has not been set.
breakDurationinteger or nullOptional
The duration of the break in seconds.
Cannot be set via API.
userIdstring or nullOptionalformat: "uuid"
The id of the user.
Can be null if the user was deleted.
idstringOptionalformat: "uuid"
The id of the time tracking.
createdBystringOptionalformat: "uuid"
The id of the user who created this time tracking.
createdOnstringOptionalformat: "date-time"
The date this time tracking was created.
updatedBystringOptionalformat: "uuid"
The id of the user who last updated this time tracking.
updatedOnstringOptionalformat: "date-time"
The date this time tracking was last modified.
typeOfWorkobjectOptional
userobjectOptional
taskobjectOptional
projectobjectOptional
breakslist of objects or nullOptional
The breaks of the time tracking.
resourceVersionlongOptionalRead-only
The version of the entity, updated on every modification, to the ticks in UTC.
Not identical to UpdatedOn.
isExternalbooleanOptional
True if this entity is coming from an external workspace (awork Connect).
Returns time entries in the workspace. The result includes entries the current user is allowed to view.
Required Permissions
The user must own the time entry or have project-timetracking:read permission for connected project entries.