Path: blob/master/Clockify/Clockify_Find_clients_on_workspace.ipynb
2973 views
Clockify - Find clients on workspace
Tags: #clockify #workspace #client #api #python #find
Author: Florent Ravenel
Last update: 2023-05-16 (Created: 2023-05-16)
Description: This notebook will show how to find clients on a workspace using the Clockify API. It will return a dataframe with columns as follow:
id: This column represents an identifier or unique identifier associated with a record or entity. It contains alphanumeric values that uniquely identify each row in the DataFrame.
name: This column stores the name or title associated with a particular record or entity. It likely contains text values representing the name of a person, object, or entity.
email: This column stores email addresses associated with the records in the DataFrame. It likely contains text values representing the email addresses of individuals or entities.
workspaceId: This column represents an identifier or unique identifier associated with a workspace. It likely contains alphanumeric values that uniquely identify each workspace.
archived: This column indicates whether a record or entity is archived or not. It likely contains boolean values (True or False), with True indicating that the record is archived and False indicating that it is not.
address: This column stores addresses associated with the records in the DataFrame. It likely contains text values representing physical or postal addresses.
note: This column stores additional notes or comments related to the records in the DataFrame. It may contain text values providing extra information or details about a particular record or entity.
Input
Import libraries
Setup Variables
api_key
: Get your API keyworkspace_id
: ID of the workspace
Model
Find clients on workspace
This function will use the Clockify API to find clients on a workspace.