Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 2.2 KB

Clockify_Get_client_by_ID.md

File metadata and controls

64 lines (43 loc) · 2.2 KB



Template request | Bug report | Generate Data Product

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

Author: Florent Ravenel

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

References:

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()