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
0 answers

how do i get team report through Clockify API?

I want to get information like how much a particular employee worked this month on certain workspace ,so how can I use Clockify API to get this information? Thanks in Advance
0
votes
0 answers

How to filter by project or project id a detailed report generated by Clockify REST API

I am having trouble using Clockify's REST API to filter a detailed report for single project. Filter Section (see below) of the relevant documentation shows: "projects": null, My first question is what "null" means in this context? Does it mean…
0
votes
1 answer

Clockify - Add user is throwing Bad Request 400 error

I am trying to add a user to my workspace in Clockify however I am getting Bad Request Error: status Code 400. Can someone help. The API docs are not very helpful. Not sure what is wrong, is it my payload is wrong or am I missing anything in…
Vaidehi S
  • 1
  • 1
0
votes
1 answer

Retrieve a list of deleted Clockify time entry ids

We're syncing time entries through to an ERP system via the API, but if a time entry has been deleted in Clockify, we need to remove it from the ERP as well. How can we find deleted time entry ids from Clockify API?
jp98
  • 1
0
votes
1 answer

getting all clockify users with all memberships

I inherited someone elses GO code that stopeed working. After brief debugging it seems the culprit is one of last API changes in clockify: Updated default parameter for "Find all users on workspace" from ALL to NONE This is how I try to get data…
michal
  • 748
  • 1
  • 7
  • 15
0
votes
0 answers

Cloud function Logging severity info inside API response

I' a bit lost with something I haven't seen before. I hope I will be able to explain my issue with clarity. I have the cloud function below: url = 'https://reports.api.clockify.me/v1/workspaces/xxxx/reports/detailed' headers = {'X-Api-Key':…
Simon Breton
  • 2,638
  • 7
  • 50
  • 105
0
votes
1 answer

Power Query - Multiple request for different parameter values

I'm novice in using Power Query for REST API and have a Power BI report to amend to bring in additional data. I have developed a query and custom function to return the data, which works fine for a single STATUS request parameter value. This is in…
MrkCr
  • 3
  • 1
0
votes
1 answer

Writing a request JSON for fetchURL in Google Scripts: Script runs twice?

sorry in advance for the long question. I am trying to create a Google Sheet that tells me how many hours each of my contractors has logged on Clockify each the month. (Full code at the bottom) In short my problem is creating a JSON file for the…
0
votes
1 answer

Qt QDateTime::fromString gives incorrect value with Qt::ISODate

I receive a response from the Clockify JSON API which contains dates and times in ISO8601 format. The format of the strings looks fine to me, but when I convert them to a QDateTime with QDateTime::fromString, I get strange and incorrect…
M_M
  • 1,955
  • 2
  • 17
  • 23
0
votes
1 answer

Clockify - How to get all time entries (not just first page)

I'm trying to get all time entries from my Clockify workspace using the following line of code in Python: import boto3 import json import requests import pprint pp = pprint.PrettyPrinter(indent=2) url =…
0
votes
1 answer

Text Cannot be Parsed to a Duration error from API

I'm using Google Apps Script to modify projects in Clockify (https://clockify.me/developers-api). I'm getting the error, "Text cannot be parsed to a duration". Current code (note that the real goal is to recover the information from the current…
Databoy2k
  • 123
  • 1
  • 12
0
votes
1 answer

Project API - duration field not showing the same value as Web app

Project API - https://api.clockify.me/api/v1/workspaces/[Token]/projects?archived=false&page-size=1000 "duration": "PT??H" is not inline with the value on the web app. Appreciate any guidance - I am using the API to get the total hour logged against…
0
votes
0 answers

Requesting With Parameters

I'm doing some experiments with the Clockify API. It uses curl but I figured a way with python requests. In the Time-Entry Section there's a optional parameter you can pass. Basically without this parameter the duration format of the time-entry…
0
votes
0 answers

Clockify api to get all attendence data

I am putting this url in postman: https://reports.api.clockify.me/api/v1/workspaces/{workspaceId}/reports/summary to get summary reports but instead of any response I am getting nothing, no error either. Any help would be appreciated.
0
votes
1 answer

Clockify Api - get hours for each user for the last 24 hours

Hi I was wondering if you could help me. What would be the right endpoint to get a report for hours logged for each user in a given workspace the past 24 hours? The API doesn't make it clear which report to use and what values to supply in a post…