
An R wrapper around theClockifyAPI.
The documentation for{clockify} is hosted athttps://datawookie.github.io/clockify/.
You’re going to need to have an API key from your Clockify account.If you don’t yet have an account, create one. Then retrieve the API keyfrom theaccount settings.
The first thing you’ll need to do is set up your API key. I storemine in an environment variable calledCLOCKIFY_API_KEY.
CLOCKIFY_API_KEY<-Sys.getenv("CLOCKIFY_API_KEY")Now load the{clockify} package and specify the APIkey.
library(clockify)set_api_key(CLOCKIFY_API_KEY)Let’s turn on some logging so we can see what’s happening behind thescenes.
library(logger)log_threshold(INFO)Retrieve a list of available workspaces.
workspaces()# A tibble: 3 × 3 workspace_id name memberships <chr> <chr> <list> 1 5ef46294df73063139f60bfc Fathom Data <tibble [22 × 6]>2 61343c45ab05e02be2c8c1fd Personal <tibble [2 × 4]> 3 630c61ba9c3a3c3112812332 {clockify} sandbox <tibble [5 × 6]>Select a specific workspace.
workspace("630c61ba9c3a3c3112812332")[1] "630c61ba9c3a3c3112812332"Retrieve information on your user profile.
user()# A tibble: 1 × 3 user_id user_name status <chr> <chr> <chr> 1 5f227e0cd7176a0e6e754409 Andrew Collier ACTIVEGet a list of users.
users()# A tibble: 5 × 3 user_id user_name status <chr> <chr> <chr> 1 5f227e0cd7176a0e6e754409 Andrew Collier ACTIVE 2 630f17f04a05b20faf7e0afc Bob Smith ACTIVE 3 630f16ab90cfd878937a7997 <NA> NOT_REGISTERED 4 630f1cb9cb18da61cfd58659 Carol Brown PENDING_EMAIL_VERIFICATION5 630f15d3b59c366b0e3ae2e6 Alice Jones ACTIVEGet a list of clients.
clients()# A tibble: 1 × 3 client_id workspace_id client_name <chr> <chr> <chr> 1 63a55695db26c25e9d4e2d02 630c61ba9c3a3c3112812332 RStudioGet a list of projects.
projects()# A tibble: 3 × 5 project_id project_name client_id billable archived <chr> <chr> <chr> <lgl> <lgl> 1 632a94f8d801fa1178d366b8 test <NA> TRUE FALSE 2 630ce53290cfd8789366fd49 {clockify} 63a55695db26c25e9d4e2… TRUE FALSE 3 630ce53cb59c366b0e27743f {emayili} 63a55695db26c25e9d4e2… TRUE FALSERetrieve the time entries for the authenticated user.
time_entries()Retrieve time entries for another user specified by their userID.
time_entries(user_id ="630f15d3b59c366b0e3ae2e6")prepare_cran_entry<-time_entry_create(project_id ="630ce53290cfd8789366fd49",start ="2021-08-30 08:00:00",end ="2021-08-30 10:30:00",description ="Prepare for CRAN submission")Check on the ID for this new time entry.
prepare_cran_entry$time_entry_id[1] "64f21f2ad397e5503bef3bb4"Confirm that it has been inserted.
time_entries(concise =FALSE)%>%select(time_entry_id, description, time_start, time_end)# A tibble: 1 × 4 time_entry_id description time_start time_end <chr> <chr> <dttm> <dttm> 1 64f21f2ad397e5503bef3bb4 Prepare for … 2021-08-30 08:00:00 2021-08-30 10:30:00time_entry_delete(prepare_cran_entry$time_entry_id)[1] TRUEConfirm that it has been deleted.
time_entries(concise =FALSE)%>%select(time_entry_id, description, time_start, time_end)# A tibble: 0 × 4# ℹ 4 variables: time_entry_id <chr>, description <chr>, time_start <dttm>,# time_end <dttm>Endpoints which have currently been implemented in this package.Endpoints which are only available on a paid plan are indicated with a💰.