v20

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-04182772.1 KB
TimeEntries

Retrieves all time entries with a simplified model based on the grouping parameter.

<Check title="Required Permissions" icon="key">Any authenticated user.</Check>

get/timeentries/simplified

Query parameters

groupingstring

The grouping type.

pageinteger

Page number for pagination

pageSizeinteger

Number of items per page

orderbystring

The properties to order by

filterbystring

The filter expression to filter by

Response

OK

idstring uuid

The id of the time entry.

isBillableboolean

Whether the time entry is billable or not.

isBilledboolean

Whether the time entry is billed or not.

durationinteger nullable

The duration of the time entry in seconds. Not set if the time entry is still running.

startDatestring date-time

The start date and time of the time entry. Required. If the time entry is date only, the time should be 00:00:00.

endDatestring date-time nullable

The end date and time of the time entry. Not set if the time entry is still running. If the time entry is date only, it should be the same as the start date.

taskIdstring uuid nullable

The id of the task.

projectIdstring uuid nullable

The id of the project.

userIdstring uuid nullable

The id of the user.

typeOfWorkIdstring uuid nullable

The id of the type of work.

createdBystring uuid

The id of the user who created this time entry.

createdOnstring date-time

The date of the creation of this time entry.

Example response

[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "isBillable": true,
    "duration": 8635,
    "task": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "createdBy": "123e4567-e89b-12d3-a456-426614174000",
      "entityId": "123e4567-e89b-12d3-a456-426614174000",
      "projectId": "123e4567-e89b-12d3-a456-426614174000",
      "correlationId": "123e4567-e89b-12d3-a456-426614174000",
      "parentId": "123e4567-e89b-12d3-a456-426614174000",
      "taskStatusId": "123e4567-e89b-12d3-a456-426614174000",
      "taskStatus": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Design",
        "description": "Work in progress",
        "type": "todo",
        "order": 1,
        "icon": "arrow_forward"
      },
      "primaryTaskListId": "123e4567-e89b-12d3-a456-426614174000",
      "primaryTaskList": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Design"
      }
    },
    "taskId": "123e4567-e89b-12d3-a456-426614174000",
    "project": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Design",
      "company": {
        "id": "123e4567-e89b-12d3-a456-426614174000"
      }
    },
    "projectId": "123e4567-e89b-12d3-a456-426614174000",
    "user": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "firstName": "Carla",
      "lastName": "Creative"
    },
    "userId": "123e4567-e89b-12d3-a456-426614174000",
    "typeOfWork": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Design",
      "icon": "thumb_up"
    },
    "typeOfWorkId": "123e4567-e89b-12d3-a456-426614174000",
    "createdBy": "123e4567-e89b-12d3-a456-426614174000"
  }
]