time_entries.Rd
You send time according to your account's timezone (from Profile Settings) and get response with time in UTC.
time_entries(
user_id = NULL,
start = NULL,
end = NULL,
description = NULL,
project_id = NULL,
task = NULL,
tags = NULL,
finished = TRUE,
concise = TRUE,
...
)
User ID. If not specified then use authenticated user.
If provided, only time entries that started after the specified datetime will be returned.
If provided, only time entries that started before the specified datetime will be returned.
If provided, time entries will be filtered by description.
If provided, time entries will be filtered by project.
If provided, time entries will be filtered by task.
If provided, time entries will be filtered by tags. You can provide one or more tags.
Whether to include only finished time intervals (intervals with both start and end time).
Generate concise output
Further arguments passed to paginate
.
A data frame with one record per time entry.
if (FALSE) {
set_api_key(Sys.getenv("CLOCKIFY_API_KEY"))
USER_ID <- "612b15a4f4c3bf0462192676"
# Specify number of results per page (default: 50).
time_entries(USER_ID, page_size = 200)
# Specify number of pages.
time_entries(USER_ID, pages = 3)
}