Path: blob/master/Clockify/Clockify_Find_tasks_on_project.ipynb
2973 views
Clockify - Find tasks on project
Tags: #clockify #task #project #find #api #python
Author: Florent Ravenel
Last update: 2023-05-16 (Created: 2023-05-16)
Description: This notebook will help you find tasks on a project using Clockify API. It will return a dataframe with columns as follow:
id: This column stores an identifier or unique identifier associated with a task. It likely contains alphanumeric values that uniquely identify each task in the DataFrame.
name: This column stores the names or titles associated with the tasks. It likely contains text values representing the names or titles of the tasks.
projectId: This column represents the identifier or unique identifier of the project to which each task belongs. It likely contains alphanumeric values that uniquely identify the project.
assigneeIds: This column stores the identifiers or unique identifiers of the assignees assigned to the tasks. It likely contains a list or nested data structure that indicates the assignees associated with each task.
assigneeId: This column stores the identifier or unique identifier of a single assignee assigned to the task. It likely contains a single value indicating the assignee for the task.
userGroupIds: This column stores the identifiers or unique identifiers of the user groups associated with the tasks. It likely contains a list or nested data structure that indicates the user groups associated with each task.
estimate: This column stores the estimate or estimated duration for each task. It likely contains a time duration format, such as "PT0S" (indicating zero duration).
status: This column indicates the status of the tasks, whether they are active or inactive. It likely contains text values such as "ACTIVE" or "INACTIVE".
duration: This column stores the actual duration or time taken for each task. It likely contains a time duration format, such as "PT2H42M1S" (indicating a duration of 2 hours, 42 minutes, and 1 second).
billable: This column indicates whether the task is billable or not. It likely contains boolean values (True or False), with True indicating that the task is billable and False indicating that it is not.
hourlyRate: This column stores the hourly rate associated with the task. It likely contains numerical values representing the rate for the task, such as an hourly billing rate.
costRate: This column stores the cost rate associated with the task. It likely contains numerical values representing the cost rate for the task, such as the rate at which the task incurs costs.
Input
Import libraries
Setup Variables
api_key
: Get your API keyworkspace_id
: ID of the workspaceproject_id
: Find your project ID