Everhour integration
Everhour is a time tracking and expense management software equipped with…
- Provider
- everhour
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 38 available
Quick start
Call Everhour from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Everhour'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(
"EVERHOUR_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 Everhour 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
38 actions exposed via the
Everhour integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
EVERHOUR_CLIENT_CREATE -
EVERHOUR_CLIENT_DELETE -
EVERHOUR_CLIENT_LIST -
EVERHOUR_CLOCK_IN -
EVERHOUR_CLOCK_OUT -
EVERHOUR_CREATE_WEBHOOK -
EVERHOUR_DELETE_HOOK -
EVERHOUR_DELETE_TIMECARD -
EVERHOUR_DISCARD_TIMESHEET_APPROVAL -
EVERHOUR_EXPENSES_LIST -
EVERHOUR_GET_CLIENT -
EVERHOUR_GET_PROJECT
Show all 38 actions
-
EVERHOUR_GET_SECTION -
EVERHOUR_GET_TIMECARD -
EVERHOUR_GET_USER_PROFILE -
EVERHOUR_GET_WEBHOOK -
EVERHOUR_LIST_EXPENSE_CATEGORIES -
EVERHOUR_LIST_HOOKS -
EVERHOUR_LIST_INVOICES -
EVERHOUR_LIST_PROJECTS -
EVERHOUR_LIST_SECTIONS -
EVERHOUR_LIST_TAGS -
EVERHOUR_LIST_TEAM_MEMBERS -
EVERHOUR_LIST_TEAMS -
EVERHOUR_LIST_TIMECARDS -
EVERHOUR_LIST_USER_TIMECARDS -
EVERHOUR_LIST_USER_TIMESHEETS -
EVERHOUR_PROJECT_CREATE -
EVERHOUR_PROJECT_DELETE -
EVERHOUR_REQUEST_TIMESHEET_APPROVAL -
EVERHOUR_SECTION_CREATE -
EVERHOUR_SECTION_DELETE -
EVERHOUR_TASK_CREATE -
EVERHOUR_TIMER_START -
EVERHOUR_UPDATE_CLIENT -
EVERHOUR_UPDATE_PROJECT -
EVERHOUR_UPDATE_TIMECARD -
EVERHOUR_UPDATE_WEBHOOK
Build with Everhour
Open OverSkill, describe what you want to build, and reference Everhour in your prompt — the AI will wire up the integration automatically.