Timely integration
Timely is an automatic time-tracking platform capturing activity across…
- Provider
- timely
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 41 available
Quick start
Call Timely from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Timely'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(
"TIMELY_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
OverSkill hosts the OAuth application for Timely. End-users click Connect on the integration card in your app, complete the OAuth flow with Timely, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2.
Available actions
41 actions exposed via the
Timely integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TIMELY_CREATE_CLIENT -
TIMELY_CREATE_DAY_LOCKING -
TIMELY_CREATE_LABEL -
TIMELY_CREATE_REPORT -
TIMELY_CREATE_TEAM -
TIMELY_CREATE_WEBHOOK -
TIMELY_DELETE_LABEL -
TIMELY_DELETE_TEAM -
TIMELY_DELETE_WEBHOOK -
TIMELY_FILTER_REPORTS -
TIMELY_GET_ACTIVITIES -
TIMELY_GET_CLIENT
Show all 41 actions
-
TIMELY_GET_CURRENT_PERMISSIONS -
TIMELY_GET_CURRENT_USER -
TIMELY_GET_LABEL -
TIMELY_GET_PROJECT -
TIMELY_GET_TEAM -
TIMELY_GET_USER -
TIMELY_GET_USER_CAPACITIES -
TIMELY_GET_USER_PERMISSIONS -
TIMELY_GET_WEBHOOK -
TIMELY_LIST_ACCOUNTS -
TIMELY_LIST_CLIENTS -
TIMELY_LIST_EVENTS -
TIMELY_LIST_FORECASTS -
TIMELY_LIST_LABELS -
TIMELY_LIST_PROJECT_EVENTS -
TIMELY_LIST_PROJECTS -
TIMELY_LIST_ROLES -
TIMELY_LIST_TEAMS -
TIMELY_LIST_USER_EVENTS -
TIMELY_LIST_USERS -
TIMELY_LIST_WEBHOOKS -
TIMELY_PROCESS_BULK_EVENTS -
TIMELY_RETRIEVE_ACCOUNT -
TIMELY_UPDATE_CLIENT -
TIMELY_UPDATE_DAY_LOCKING -
TIMELY_UPDATE_LABEL -
TIMELY_UPDATE_PROJECT -
TIMELY_UPDATE_USER -
TIMELY_UPDATE_WEBHOOK
Build with Timely
Open OverSkill, describe what you want to build, and reference Timely in your prompt — the AI will wire up the integration automatically.