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/
Questions tagged [clockify]
79 questions
6
votes
1 answer
Login Form in Clockify
I'm trying to create a PowerShell script to open Internet Explorer, navigate to https://clockify.me/login , fill in the email and password inputs and submit the form or click the log in button.
The problem is that, when filling the inputs…

Fabio Leonardo
- 81
- 5
5
votes
0 answers
Can I automate the generation of an API client for Clockify?
I'm writing some PHP middleware to connect Clockify to Xero.
Both platforms provide granular REST APIs so I should be able move data between the two with relative ease.
Xero provides an API client for PHP and so I looked to see if Clockify did also…

Chedaroo
- 151
- 4
2
votes
1 answer
'Full authentication is required to access this resource' Clockify API with Node JS
I am unable to add new clients using the Clockify API in Node js. The following axios post request returns the error message: 'Full authentication is required to access this resource'. However, I am able to get a list of clients using the…

JorisH0
- 21
- 1
2
votes
0 answers
Automating Report Generation in Clockify
Is there any combination of API and Saved Reports that can be used to programmatically generate a PDF (i.e. "Export to PDF") for a specific Clockify report?

Alex Rothberg
- 10,243
- 13
- 60
- 120
2
votes
1 answer
POST Request to Clockify via Google Scripts
I am attempting to use the Clockify API (documentation here: https://clockify.me/developers-api#tag-Client) to add clients based on the name of a given spreadsheet in Google Sheets. My code is as follows:
function ClockifyManAdd() {
var filedata =…

Databoy2k
- 123
- 1
- 12
1
vote
0 answers
How do i write pagination into the "body" of my query function (CLOCKIFY API)
I need to loop through every page with timeentry results (so far i know i have 4 pages). The reason why i need to loop through the pages is the api has a limit of 1000 results each page.
My issue seems to be in how to factor in the pagination in my…

mapooo
- 11
- 1
1
vote
0 answers
Somebody knows how to solve 401 Unauthorized error with Clockify API using axios and node js
Does someone know why I'm getting a 401 Unauthorized error when I try to post a request to add a time entry even though I have added my API key?
I'm using Axios and node js, and this is the information and how I am making the request. However, I am…

Gerardo Ramirez
- 11
- 2
1
vote
0 answers
Why is my Clockify API request for a Detailed Report only filtered by a specific client ID only returning the entries for 1 user?
I'm using the Clockify API with my user API key to get all time entries for a specific client.
However I'm only getting the time entries for one of the users of the team and not all the users of the team.
I've tried to filter specifically on other…

Diogo Cunha
- 11
- 1
1
vote
0 answers
Request for projects only with clients does not filter out projects without client
I use Postman to learn how to use API and i was trying to get list of projects only with clients. I tried make request with "archived: true" and it did work. But, when i try to use "contains-client: true", i get all projects, with and without…

Jam Hadar
- 11
- 1
1
vote
2 answers
Remove dupilcates query in INSERT SELECT statement
I have a query which is inserting data into Clockify Table from Task Table through INSERT SELECT statements.
ALTER procedure [dbo].[ClockifyAdd]
AS
BEGIN
insert into Clockify(ClockifyId,DurationInMinutes,Date)
SELECT
…

Syed ibrahim
- 25
- 5
1
vote
1 answer
Clockify API to get total number of entries for a user?
I used Clockify to track roughly every minute of my day for the last 3 months as an experiment. I'm in the process of pulling all of my time entry data from the API so that I can analyze it and make visualizations.
I'd like to avoid getting all of…

Zachary Taylor
- 13
- 2
1
vote
1 answer
How to automatically catch the day on Carbon?
I am creating through laravel a system to get clockify all the tasks done on the day between a certain time. I'm looking at carbon for some functionality to automatically catch the day, but I didn't find anything.
Does anyone know how to…

DavidLordCaos
- 13
- 2
1
vote
2 answers
Duration data type in TimeIntervalDto object
I am creating a database to store time entries that have been created in Clockify, I need to declare a data type for the duration field. A string is returned in the TimeIntervalDto and an example provided in the API documentation is "PT1M4S" or…

teal
- 13
- 2
1
vote
0 answers
How to access Clockify API through Excel Power Query
I am new to Clockify and to API usage (so I apologize if I express myself not properly). My objective is to automatically load in Excel (via Power Query) the detailed report with all time entries. I have tried the below code and it works ... but for…

AdrianoC
- 11
- 1
1
vote
1 answer
Clockify- CreateProjectAsync with Memberships
I'm having a error when I use c# API clockify
When I create a Project with Memberships I get this error:
"{\"message\":\"Internal server error.\",\"code\":500}"
When i comment Memberships attribute the project it's created.
var assignees = new…

Rui Santos
- 27
- 2