Questions tagged [clockify]

Clockify is the only 100% free time tracking software. It's a simple time tracker and timesheet app that lets you and your team track work hours on projects. Unlimited users, free forever. https://clockify.me/

79 questions
0
votes
1 answer

How to properly iterate through paginated results in Clockify?

The clockify API is unclear (to me) about how to iterate through results. For example, https://clockify.github.io/clockify_api_docs/#operation--workspaces--workspaceId--timeEntries--get says Each request is limited to 10 time entries. To get the…
Reece
  • 7,616
  • 4
  • 30
  • 46
0
votes
1 answer

What the best clockify API endpoint to get time entries of (grouped by) saved reports?

Asking here, after asking to Clockify support. Trying to extend some of clockify capabilities to create extra reporting for our clients, I’ve been playing with your API and specifically: the enpoint /reports/{reportsId} • My goal: Get all the time…
ricricucit
  • 2,276
  • 2
  • 15
  • 19
0
votes
1 answer

How can I fix a 501 error from the clockify API?

I'm getting a 501 response from the clockify API when trying to create a Time Entry using CreateTimeEntryRequest I've verified I can query the API and get data from it, so I'm using the correct X-Api-Key, I've resolved a few issues with bad datetime…
0
votes
2 answers

/users/{userId} is only available for current user?

I use the Clockify API to sync objects to and from our other databases. I try to update the user image from our LDAP user repo; works fine on my own account, but when I try to update the image for someone else I get a 403. That leads me to the…
0
votes
1 answer

Unable to log time entry using API

I am trying to log a time entry using the Clockify API. When I run the line below in my terminal I get the response that follows curl -H 'content-type':'application/json' -H 'X-Api-Key':'api-key' -X POST…
0
votes
1 answer

How to lock timeEntrys via API?

Is it possible to lock timeEntrys via API? https://api.clockify.me/api I have tried google but did not find anything.
0
votes
1 answer

Having trouble with GET method Clockify API

I am currently trying to use Clockify's API and when I input the following line in my terminal: curl -H 'content-type':'application/json' -H 'X-Api-Key':'UserKey' -X GET https://api.clockify.me/api/workspaces/workspaceid/projects I get the…
0
votes
4 answers

Clockify Integration (extract time entries for a given period)

I am in the process of building an integration between Clockify and Zoho CRM. Where I have clients and projects and staff defined in Zoho. All the clients and projects are synchronised fine from Zoho to Clockify. But now I have reached a snag with…
0
votes
2 answers

How to access Clockify API through Power Query

I am trying to get my time entries from Clockify API directly via Power Query to Excel. I use the following code in the Power Query: = Web.Contents("https://api.clockify.me/api/workspaces/ID of my workspace/timeEntries/", [ Query=[ #"filter"="",…
Alex
  • 3
  • 3
0
votes
1 answer

Find report by ID: Request method 'GET' not supported

I'm trying to get data from one report with VBA in Excel. I get this error message: {"data":{"message":"Request method 'GET' not supported","code":3000}} This is my code: Dim strUrl As String strUrl =…
0
votes
2 answers

Clockify API: Group Report by Project and aggregate by Task

Calling the REST-Api, I want to get a list of tasks with their corresponding summed tracked time grouped by their project. As an example, if I have the following time entries: 2h, Task1, ProjectA 1h, Task1, ProjectA 3h, Task2, ProjectB 30m, Task2,…
Alexander Baier
  • 230
  • 2
  • 7
0
votes
2 answers

Clockify API in PBI

Does anyone know how to call the Clockify API in Power Bi? I just cant seem to get it right. I have read through the Clockify API documentation and the I cant transpose the code in Power Bi. let Source =…
Alex
  • 43
  • 6
0
votes
1 answer

Getting "entriesInRange" from other users

I've encountered some problems using POST /workspaces/{workspaceId}/timeEntries/user/{userId}/entriesInRange It works only if I ask for my own userid, but when I request data for other workspace users - I get 403 - forbidden - how can I change that…
groblus
  • 21
  • 3
0
votes
1 answer

How to specify date/time for the clockify API? Which fields are optional?

This seems to work fine: curl -H 'content-type':'application/json' -H 'X-Api-Key':'' -X POST --data '{"start": "2018-06-12T13:48:14.000Z", "tagIds": [""] }' https://api.clockify.me/api/workspaces//timeEntries/ It…
lumbric
  • 7,644
  • 7
  • 42
  • 53
-1
votes
1 answer

Partition and group by query

I have table containing the columns: 1. ClockifyId, 2. StartTime EndTime of every Task 3. Date. 4. Duration The image is attached below My goal is to write query to calculate the total duration of every user(which is ClockifyId) of every date. As…