Toggl integration
Toggl is a time tracking application that helps users monitor and manage their…
- Provider
- toggl
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 56 available
Quick start
Call Toggl from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Toggl'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(
"TOGGL_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 Toggl 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
56 actions exposed via the
Toggl integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TOGGL_CREATE_CLIENT -
TOGGL_CREATE_GROUP -
TOGGL_CREATE_INVITATION -
TOGGL_CREATE_ORGANIZATION -
TOGGL_CREATE_PROJECT -
TOGGL_CREATE_TAG -
TOGGL_CREATE_TIME_ENTRY -
TOGGL_CREATE_WORKSPACES_PROJECT_USERS -
TOGGL_DELETE_CLIENT -
TOGGL_DELETE_GROUP -
TOGGL_DELETE_PROJECT_GROUP -
TOGGL_DELETE_SUBSCRIPTION
Show all 56 actions
-
TOGGL_DELETE_TAG -
TOGGL_DISABLE_WEEKLY_REPORT -
TOGGL_EDIT_TIME_ENTRIES -
TOGGL_GET_ALL_PLANS -
TOGGL_GET_CLIENT_DETAILS -
TOGGL_GET_COUNTRIES -
TOGGL_GET_COUNTRY_SUBDIVISIONS -
TOGGL_GET_CURRENCIES -
TOGGL_GET_CURRENT_TIME_ENTRY -
TOGGL_GET_EVENT_FILTERS -
TOGGL_GET_KEYS -
TOGGL_GET_LIST_CLIENTS -
TOGGL_GET_MY_LOCATION -
TOGGL_GET_MY_QUOTA -
TOGGL_GET_ORGANIZATION_DETAILS -
TOGGL_GET_ORGANIZATION_GROUPS -
TOGGL_GET_ORGANIZATION_USERS -
TOGGL_GET_PROJECT_DETAILS -
TOGGL_GET_PROJECTS -
TOGGL_GET_PUBLIC_SUBSCRIPTION_PLANS -
TOGGL_GET_STATUS -
TOGGL_GET_TAGS -
TOGGL_GET_TASKS -
TOGGL_GET_TIME_ENTRIES -
TOGGL_GET_TIME_ENTRY -
TOGGL_GET_TIMEZONE_OFFSETS -
TOGGL_GET_TIMEZONES -
TOGGL_GET_USER_CLIENTS -
TOGGL_GET_USER_PREFERENCES -
TOGGL_GET_USER_PROJECTS -
TOGGL_GET_USER_TAGS -
TOGGL_GET_USER_TASKS -
TOGGL_GET_USER_WORKSPACES -
TOGGL_GET_WORKSPACE_DETAILS -
TOGGL_GET_WORKSPACE_LOGO -
TOGGL_GET_WORKSPACE_PREFERENCES -
TOGGL_GET_WORKSPACE_USERS -
TOGGL_PATCH_STOP_TIME_ENTRY -
TOGGL_POST_ME_DISABLE_PRODUCT_EMAILS -
TOGGL_PUT_UPDATE_TAG -
TOGGL_SEND_DEMO_EMAIL -
TOGGL_SEND_EMAIL_CONTACT -
TOGGL_SEND_SMAIL_MEET -
TOGGL_UPDATE_CLIENT
Build with Toggl
Open OverSkill, describe what you want to build, and reference Toggl in your prompt — the AI will wire up the integration automatically.