Clockify integration
Clockify is a free time tracking software that allows individuals and teams to…
- Provider
- clockify
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 75 available
Quick start
Call Clockify from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Clockify's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"CLOCKIFY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Clockify API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
75 actions exposed via the
Clockify integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CLOCKIFY_ADD_USER_TO_GROUP -
CLOCKIFY_CREATE_CLIENT -
CLOCKIFY_CREATE_NEW_PROJECT -
CLOCKIFY_CREATE_SHARED_REPORT -
CLOCKIFY_CREATE_TASK -
CLOCKIFY_CREATE_TEMPLATES_ON_WORKSPACE -
CLOCKIFY_CREATE_TIME_ENTRY -
CLOCKIFY_CREATE_USER_GROUP -
CLOCKIFY_CREATE_USER_TIME_ENTRY -
CLOCKIFY_CREATE_WEBHOOK -
CLOCKIFY_CREATE_WORKSPACE -
CLOCKIFY_DELETE_CLIENT
Show all 75 actions
-
CLOCKIFY_DELETE_PROJECT -
CLOCKIFY_DELETE_SHARED_REPORT -
CLOCKIFY_DELETE_TAG -
CLOCKIFY_DELETE_TASK -
CLOCKIFY_DELETE_TEMPLATE -
CLOCKIFY_DELETE_TIME_ENTRY -
CLOCKIFY_DELETE_USER_GROUP -
CLOCKIFY_DELETE_USER_TIME_ENTRIES -
CLOCKIFY_DELETE_WEBHOOK -
CLOCKIFY_DUPLICATE_TIME_ENTRY -
CLOCKIFY_FILTER_WORKSPACE_USERS -
CLOCKIFY_FIND_USER_TEAM_MANAGER -
CLOCKIFY_GENERATE_DETAILED_REPORT -
CLOCKIFY_GENERATE_EXPENSE_REPORT -
CLOCKIFY_GENERATE_NEW_WEBHOOK_TOKEN -
CLOCKIFY_GENERATE_SUMMARY_REPORT -
CLOCKIFY_GENERATE_WEEKLY_REPORT -
CLOCKIFY_GET_ALL_ADDON_WEBHOOKS -
CLOCKIFY_GET_ALL_MY_WORKSPACES -
CLOCKIFY_GET_ALL_WEBHOOKS -
CLOCKIFY_GET_CLIENT_BY_ID -
CLOCKIFY_GET_CLIENTS -
CLOCKIFY_GET_CREATED_ENTITIES -
CLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFO -
CLOCKIFY_GET_DELETED_ENTITIES -
CLOCKIFY_GET_HOLIDAYS -
CLOCKIFY_GET_HOLIDAYS_IN_PERIOD -
CLOCKIFY_GET_IN_PROGRESS_TIME_ENTRIES -
CLOCKIFY_GET_MEMBER_PROFILE -
CLOCKIFY_GET_PROJECT -
CLOCKIFY_GET_PROJECTS -
CLOCKIFY_GET_SHARED_REPORT -
CLOCKIFY_GET_SHARED_REPORTS -
CLOCKIFY_GET_TAG -
CLOCKIFY_GET_TAGS -
CLOCKIFY_GET_TASK -
CLOCKIFY_GET_TASKS -
CLOCKIFY_GET_TEMPLATE_BY_ID_ON_WORKSPACE -
CLOCKIFY_GET_TEMPLATES_ON_WORKSPACE -
CLOCKIFY_GET_TIME_ENTRIES -
CLOCKIFY_GET_TIME_ENTRY -
CLOCKIFY_GET_UPDATED_ENTITIES -
CLOCKIFY_GET_USER_GROUPS -
CLOCKIFY_GET_WEBHOOK_BY_ID -
CLOCKIFY_GET_WEBHOOK_LOGS -
CLOCKIFY_GET_WORKSPACE_INFO -
CLOCKIFY_LIST_ASSIGNMENTS -
CLOCKIFY_REMOVE_USER_FROM_GROUP -
CLOCKIFY_STOP_USER_TIMER -
CLOCKIFY_UPDATE_CLIENT -
CLOCKIFY_UPDATE_PROJECT -
CLOCKIFY_UPDATE_PROJECT_MEMBERSHIPS -
CLOCKIFY_UPDATE_PROJECT_USER_HOURLY_RATE -
CLOCKIFY_UPDATE_SHARED_REPORT -
CLOCKIFY_UPDATE_TAG -
CLOCKIFY_UPDATE_TASK -
CLOCKIFY_UPDATE_TEMPLATE -
CLOCKIFY_UPDATE_TIME_ENTRIES -
CLOCKIFY_UPDATE_TIME_ENTRY -
CLOCKIFY_UPDATE_USER_GROUP -
CLOCKIFY_UPDATE_USER_HOURLY_RATE -
CLOCKIFY_UPDATE_WEBHOOK -
CLOCKIFY_UPDATE_WORKSPACE_HOURLY_RATE
Build with Clockify
Open OverSkill, describe what you want to build, and reference Clockify in your prompt — the AI will wire up the integration automatically.