clockify

Requesting With Parameters

旧巷老猫 提交于 2021-01-29 09:16:56
问题 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 show's up in letters and numbers. It's the "consider-duration-format" parameter btw. I tried passing this parameter through url = 'https://api.clockify.me/api/v1/workspaces/{workspaceID}/user/{userID}/time-entry headers = {'X-Api-Key': 'my_api_key',

Load Clockify data to Power BI

梦想与她 提交于 2020-07-23 11:03:43
问题 I'm having a Power BI report which is based on data from Clockify. So far I had to download the detailed report from clockify in order to be able to see up to date data in Power BI. I would like to get rid of this manual step and directly connect to the data stored in Clockify using the API. I'm currently loading with following M code: let Query1 = let Source = Json.Document(Web.Contents("https://api.clockify.me/api/workspaces/", [Headers=[#"x-api-key"="xxxxxxxxxxx"]])), messages = Source

Load Clockify data to Power BI

扶醉桌前 提交于 2020-07-23 11:03:28
问题 I'm having a Power BI report which is based on data from Clockify. So far I had to download the detailed report from clockify in order to be able to see up to date data in Power BI. I would like to get rid of this manual step and directly connect to the data stored in Clockify using the API. I'm currently loading with following M code: let Query1 = let Source = Json.Document(Web.Contents("https://api.clockify.me/api/workspaces/", [Headers=[#"x-api-key"="xxxxxxxxxxx"]])), messages = Source

Load Clockify data to Power BI

好久不见. 提交于 2020-07-23 11:00:50
问题 I'm having a Power BI report which is based on data from Clockify. So far I had to download the detailed report from clockify in order to be able to see up to date data in Power BI. I would like to get rid of this manual step and directly connect to the data stored in Clockify using the API. I'm currently loading with following M code: let Query1 = let Source = Json.Document(Web.Contents("https://api.clockify.me/api/workspaces/", [Headers=[#"x-api-key"="xxxxxxxxxxx"]])), messages = Source

Clockify - Best way to get ALL data into excel or access using the REST api?

做~自己de王妃 提交于 2020-07-10 06:57:39
问题 I am trying to get all data into excel using the Get data from web option but I am not sure how to properly configure it. I did get the API key. EDIT: Below is the path I use, but that is only the time entries for one user, I need them for ALL users. https://api.clockify.me/api/v1/workspaces/myWorkspace/user/myUser/time-entries Any help is appreciated. 回答1: EDIT: I didn't read that you wanted to use Power Query in Excel. The Advanced Editor only works with this code in Power BI Desktop. You

Clockify - Best way to get ALL data into excel or access using the REST api?

痴心易碎 提交于 2020-07-10 06:57:21
问题 I am trying to get all data into excel using the Get data from web option but I am not sure how to properly configure it. I did get the API key. EDIT: Below is the path I use, but that is only the time entries for one user, I need them for ALL users. https://api.clockify.me/api/v1/workspaces/myWorkspace/user/myUser/time-entries Any help is appreciated. 回答1: EDIT: I didn't read that you wanted to use Power Query in Excel. The Advanced Editor only works with this code in Power BI Desktop. You

How to access Clockify API through Power Query

大城市里の小女人 提交于 2019-12-25 01:08:50
问题 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"="", #"orderBy"=""], ApiKeyName="APIToken" ]) When I then try to run the code I am prompted to enter the Web API authentification, which delivers an error ("English translation: Authentification does not work. Try again") after I enter my correct Web API