Workable integration
Workable is an all-in-one HR software platform that streamlines hiring,…
- Provider
- workable
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 37 available
Quick start
Call Workable from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Workable'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(
"WORKABLE_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 Workable 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
37 actions exposed via the
Workable integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
WORKABLE_CREATE_EMPLOYEE -
WORKABLE_DELETE_DEPARTMENT -
WORKABLE_DELETE_SUBSCRIPTION -
WORKABLE_GET_ACCOUNT -
WORKABLE_GET_ACCOUNTS -
WORKABLE_GET_BACKGROUND_CHECK_PACKAGES -
WORKABLE_GET_BACKGROUND_CHECK_PROVIDERS -
WORKABLE_GET_CANDIDATES -
WORKABLE_GET_EMPLOYEE -
WORKABLE_GET_EVENTS -
WORKABLE_GET_JOBS -
WORKABLE_GET_LEGAL_ENTITIES
Show all 37 actions
-
WORKABLE_GET_MEMBERS -
WORKABLE_GET_RECRUITERS -
WORKABLE_GET_REQUISITIONS -
WORKABLE_GET_STAGES -
WORKABLE_GET_SUBSCRIPTIONS -
WORKABLE_LIST_CUSTOM_ATTRIBUTES -
WORKABLE_LIST_DEPARTMENTS -
WORKABLE_LIST_DISQUALIFICATION_REASONS -
WORKABLE_LIST_EMPLOYEE_FIELDS -
WORKABLE_LIST_EMPLOYEES -
WORKABLE_LIST_PERMISSION_SETS -
WORKABLE_LIST_PUBLIC_JOBS -
WORKABLE_LIST_PUBLIC_LOCATIONS -
WORKABLE_LIST_TIMEOFF_BALANCES -
WORKABLE_LIST_TIMEOFF_CATEGORIES -
WORKABLE_LIST_WORK_SCHEDULES -
WORKABLE_POST_BACKGROUND_CHECK -
WORKABLE_POST_DEPARTMENT_MERGE -
WORKABLE_POST_DEPARTMENTS -
WORKABLE_POST_MEMBER_ENABLE -
WORKABLE_POST_MEMBERS_INVITE -
WORKABLE_PUT_DEPARTMENTS -
WORKABLE_PUT_MEMBERS -
WORKABLE_UPDATE_EMPLOYEE -
WORKABLE_UPLOAD_EMPLOYEE_DOCUMENTS
Build with Workable
Open OverSkill, describe what you want to build, and reference Workable in your prompt — the AI will wire up the integration automatically.