BambooHR integration
BambooHR is a cloud-based human resources management system (HRMS) that helps…
- Provider
- bamboohr
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 41 available
Quick start
Call BambooHR from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to BambooHR'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(
"BAMBOOHR_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 BambooHR 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
41 actions exposed via the
BambooHR integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BAMBOOHR_ATS_CREATE_CANDIDATE -
BAMBOOHR_ATS_CREATE_JOB_OPENING -
BAMBOOHR_ATS_GET_APPLICATIONS -
BAMBOOHR_BENEFIT_GET_COVERAGES -
BAMBOOHR_BENEFIT_GET_MEMBER_EVENTS -
BAMBOOHR_COMPANY_GET_EINS -
BAMBOOHR_COMPANY_GET_INFORMATION -
BAMBOOHR_CREATE_FILE_CATEGORY -
BAMBOOHR_CREATE_TIME_OFF_REQUEST -
BAMBOOHR_DATASETS_LIST -
BAMBOOHR_DEPENDENTS_CREATE -
BAMBOOHR_DEPENDENTS_GET_ALL
Show all 41 actions
-
BAMBOOHR_EMPLOYEE_CREATE -
BAMBOOHR_EMPLOYEE_FILES_CREATE_CATEGORY -
BAMBOOHR_EMPLOYEE_GET_CHANGED -
BAMBOOHR_FILES_LIST -
BAMBOOHR_FILES_UPLOAD -
BAMBOOHR_GET_ALL_EMPLOYEES -
BAMBOOHR_GET_APPLICANT_STATUSES -
BAMBOOHR_GET_CUSTOM_EMPLOYEE_FIELDS -
BAMBOOHR_GET_CUSTOM_REPORTS -
BAMBOOHR_GET_EMPLOYEE -
BAMBOOHR_GET_EMPLOYEE_PHOTO -
BAMBOOHR_GET_HIRING_LEADS -
BAMBOOHR_GET_JOB_SUMMARIES -
BAMBOOHR_GET_META_DEPARTMENTS -
BAMBOOHR_GET_META_DIVISIONS -
BAMBOOHR_GET_META_EMPLOYMENT_STATUSES -
BAMBOOHR_GET_META_JOB_TITLES -
BAMBOOHR_GET_META_LOCATIONS -
BAMBOOHR_GET_META_TIME_OFF_TYPES -
BAMBOOHR_GET_REPORT -
BAMBOOHR_GET_TIME_OFF_BALANCES -
BAMBOOHR_GET_TIME_OFF_REQUESTS -
BAMBOOHR_LIST_BUILTIN_REPORTS -
BAMBOOHR_META_GET_COUNTRIES -
BAMBOOHR_META_GET_LIST_FIELD_DETAILS -
BAMBOOHR_META_GET_TABULAR_FIELDS -
BAMBOOHR_META_GET_USERS -
BAMBOOHR_UPDATE_EMPLOYEE -
BAMBOOHR_UPDATE_TIME_OFF_REQUEST
Build with BambooHR
Open OverSkill, describe what you want to build, and reference BambooHR in your prompt — the AI will wire up the integration automatically.