Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jupyter-naas
GitHub Repository: jupyter-naas/awesome-notebooks
Path: blob/master/Clockify/Clockify_Get_client_by_ID.ipynb
2973 views
Kernel: Python 3

Clockify.png

Clockify - Get client by ID

Give Feedback | Bug report

Tags: #clockify #client #create #api #rest #documentation

Last update: 2023-05-16 (Created: 2023-05-16)

Description: This notebook will show how to get a client using Clockify API from a specific workspace.

Input

Import libraries

import requests import naas

Setup Variables

  • api_key: Get your API key

  • workspace_id: ID of the workspace

  • client_id: ID of the client to get

api_key = naas.secret.get("CLOCKIFY_API_KEY") or "YOUR_API_KEY" workspace_id = "626f9e3b36c2670314c0386e" #"<WORKSPACE_ID>" client_id = "626ff141e7dfbaxxxxx"

Model

Get client

def get_client(workspace_id, api_key, client_id): url = f"https://api.clockify.me/api/workspaces/{workspace_id}/clients/{client_id}" headers = { "X-Api-Key": api_key, "Content-Type": "application/json" } response = requests.get(url, headers=headers) return response

Output

Display result

response = get_client(workspace_id, api_key, client_id) if response.status_code == 200: print(f"✅ Client '{client_id}' retrieved from workspace.") else: print(f"❌ Error retrieving client") response.json()