BambooHR Integration
INTEGRATIONS · EXPERTINI ATS

BambooHR Integration

Push a new hire into BambooHR the moment an offer is accepted — and import your people directory into the ATS talent pool, both from one connection.

読了目安 3 分 · 2026年7月更新 · Expertini Editorial

The hand-off from recruiting to HR is where new hires most often fall through the cracks: the offer is signed in one system, but the employee record that payroll, IT, and onboarding depend on lives in another, and someone has to remember to retype it. Expertini ATS closes that gap for BambooHR customers with a two-way integration: when a candidate accepts an offer, one click (or an automatic rule) creates the employee record in your BambooHR account with their name, work email, job title, and hire date already filled in.

It works in the other direction too. The same connection can read your BambooHR people directory and import it into the ATS candidate database — deduplicated by email, clearly marked as imported, and immediately searchable. Teams use it to seed internal-mobility searches and referral sourcing with the colleagues they already have. Expertini ATS is an independent product; BambooHR is a trademark of its owner, and this integration simply talks to the same official API your own account exposes.

01How to connect it, step by step

Step one: an owner or admin opens Connectors inside the ATS and clicks Connect on the BambooHR card — a standard sign-in on BambooHR's own site, after which the ATS knows your company subdomain and identity. Step two matters for pushing new hires: BambooHR grants sign-in connections read-only access to employee data, so creating employees needs an API key from your own BambooHR account (Settings → API Keys there). Paste it on the ATS Screening & HRIS page — it is stored encrypted and never shown again. That two-step design is BambooHR's security model, not a workaround, and the app tells you exactly which step is missing rather than failing silently.

02Pushing a new hire

From the Screening & HRIS page, search for the hired candidate — records are picked from a type-ahead, never retyped — and push. The ATS sends first and last name, work email, job title, and the hire date, and BambooHR replies with the created employee record. Prefer zero clicks? Tick BambooHR under "Auto-push on hire" and every accepted offer creates the employee automatically, with each push logged on the app's activity page so you can always see what happened and when.

03Importing your people directory

The "Import your people" action reads BambooHR's employee directory — the same list its own mobile app shows — and adds each person to your ATS candidate database with their name, work email, and job title. Existing records are matched by email and never overwritten; imported people are marked as such, remain fully editable, and carry conservative privacy defaults (no consent is assumed — they never filled in an application form). Re-running the import only adds what's new.

04What this replaces

Without the integration, every hire means retyping the same five fields into HR software, and every internal-mobility search means asking HR for a spreadsheet. With it, the offer workflow ends with a real employee record, and your own workforce is one search away in the candidate database. No middleware subscription, no per-sync fees — the connector is part of the plan.

エンジニアリングノート

プラットフォームアーキテクチャ & 運用

A1Connection architecture

The connection uses OAuth 2.0 against the vendor's own consent screen. The authorisation request names the minimum scopes the features need — the exact scope list is shown in the security-flow panel below, pulled from the same provider registry the application uses. The code-for-token exchange happens entirely server-side (client credentials in the token request body, per the vendor's token endpoint contract); tokens are stored encrypted at rest and are never rendered back to any screen — connection pages show presence, not values.

Token lifecycle is handled at a single chokepoint: expiry triggers an automatic refresh, rotated refresh tokens are persisted, and a refresh that the vendor rejects surfaces as a visible reconnect prompt — never as silently broken features. Revocation works from either side: disconnect here, or revoke in the vendor's own security settings.

A2Write semantics and data flow

Every data movement is an explicit action with a logged result. Writes happen on your click — or automatically only where you enabled a rule (auto-push on hire is off by default, per-provider). Reads — imports of people, accounts, or files — run when you press Import, deduplicate against what you already have (clients by name, people by email), skip rather than overwrite, and report created-versus-skipped honestly, which is why re-running any import is safe by design.

Each action writes a row to the app-activity journal (ats_app_activity): what ran, when, for which record, and the outcome — including the vendor's own error text verbatim when something fails. Usage reporting inside the ATS aggregates that same journal, so integration reporting and integration reality cannot diverge.

Anything that leaves the request path — notification fan-out, webhook delivery, activity journalling, mail — runs in fire-and-forget background threads. A slow external endpoint can never make the interface hang, and a failed side effect is logged rather than silently retried into inconsistency.

A3Operational considerations

Connections are organisation-level and gated to owner and admin roles; recruiters use the features a connection powers but cannot connect, disconnect, or reconfigure. Disconnecting removes stored credentials immediately and stops the dependent features visibly, not silently. Data already imported stays yours and editable.

Imported people arrive marked as imported with conservative privacy defaults — no consent is assumed for anyone who never filled in your application form, and retention defaults apply. Everything written is yours to take: CSV exports and the Data Export app cover the same stores the product itself reads. The exit is as open as the entrance — by design, not concession.

A4Placement in the integration topology

This integration is live in the registry today. One connection per provider unlocks every feature it powers, and the topology grid below shows the neighbouring connectors in the same capability area — statuses come from the same registry that drives the in-app hub, so this page can never claim more than the product does. For anything the catalogue does not cover, Webhooks and Zapier are the generic, documented escape hatch.

依存関係マップ

Connection typeOAuth 2.0 (vendor consent screen)
Scopes requestedopenid · email · employee:name · employee:job
Callback path/apps/oauth/callback/bamboohr/
Token exchangeserver-side; credentials in body
Secrets at restencrypted; UI shows presence flags, never values
Action journalats_app_activity — one row per action, vendor errors verbatim
Auto-push rulesoff by default, per-provider, every run logged
Registry statuslive

インターフェース設計図

画面の構造的設計図 — パネル、階層構造、インタラクションのアフォーダンス。スクリーンショットではなく、仕様としての定義です。
コネクションカード
● 接続中 — プレゼンスフラグ
スコープ: 必要最小限 接続解除
アクション
プッシュ — 明示的なクリックインポート — 重複排除済み
アクティビティ履歴
図 1 — BambooHR Integration:構造的インターフェース概略図。パネルと状態が仕様であり、表示されているデータはプレースホルダーです。

インタラクションフロー — 状態、検証、フィードバック

以下のすべての状態はサーバー側で適用されます。インターフェースはそれを報告するのみであり、決定するものではありません。
Connectowner/admin clicks Connect on the Connectors page
Vendor consentthe vendor's own screen lists the exact scopes
Token exchangeserver-side callback; secrets never touch the browser
Connectedencrypted store; card flips with presence flag
Explicit actionspush / import / schedule — each one journalled
Consent denied → the vendor's error code surfaces in a toast, namedPlatform keys missing → honest setup pointer, not a silent bounceToken expired → automatic refresh at the chokepointRefresh rejected → visible reconnect prompt, features never break silentlyPlan below minimum → lock card names the exact plan
図2 — インタラクションフロー: 濃紺 = 状態、金 = サーバー強制ゲート、緑 = 確定した結果、タグはエッジケースとそのフィードバックを一覧表示。

OAuth 2.0 セキュリティフロー — BambooHR

1
認証リクエストベンダー自身の同意画面にリダイレクトし、以下に記載されたスコープのみを正確に要求します(それ以上は一切要求しません)。
2
本人確認および同意ベンダーのドメイン上にてベンダー側で認証を行います。認証情報がExpertiniに渡ることはありません。
3
サーバー側でのトークン交換/apps/oauth/callback/bamboohr/ のコールバックが client credentials in request body を使用してコードを交換します(完全にサーバー側で実行)。
4
管理されたセッション状態保存時に暗号化されるトークン、単一のチョークポイントでの自動更新、プレゼンスフラグの表示、双方向からの失効が可能です。
openidemailemployee:nameemployee:job
スコープ一覧はアプリケーションが認証を行う同じプロバイダーレジストリから読み込まれます。このページで過大または過小に表示されることはありません。

Neighbouring connectors — Human Resources Information System

BambooHRthis page SAP SuccessFactorslive ADPplanned
ステータスはリアルタイムレジストリから取得されます — 全カタログを見る →

よくある質問

Why does pushing employees need an API key when I already signed in?
BambooHR's sign-in connections are read-only for employee data by design. Employee creation uses an API key generated inside your own BambooHR account — the ATS stores it encrypted and uses it only for the pushes you trigger or enable.
What exactly is sent to BambooHR on a push?
First name, last name, work email, job title, and hire date — enough for a valid employee record. Everything else stays in the ATS until your HR team enriches the record in BambooHR.
Does the people import overwrite existing candidates?
No. Matching is by email: if a person is already in your candidate database, the import skips them. Imported records are marked as imported and stay editable.
Is Expertini affiliated with BambooHR?
No. BambooHR is a trademark of its owner. Expertini ATS integrates through the official API available to any BambooHR customer, using your own account and credentials.
What does the integration cost?
It's included in the subscription — see pricing. There are no per-push or per-import fees.

概要

  • One-click or automatic new-hire push on offer acceptance
  • Name, work email, job title, and hire date arrive pre-filled
  • Import the BambooHR people directory into the ATS talent pool
  • Email-based dedupe — nothing overwritten, safe to re-run
  • Every push and import logged on the app's activity page
  • Uses your own BambooHR account and API key, stored encrypted

貴社の採用でbamboohr integrationをご確認ください。

実際の職務記述書をご用意のうえ、30分間のデモにご参加ください。無料トライアルが含まれています。

デモを予約
Expertini インテリジェント
現在オンライン
こんにちは!Expertiniのインテリジェント・プロダクトエキスパートです。ソリューションに関するご質問、採用ツールのガイダンス、進め方のご相談など、何でもお尋ねください。適切にご案内いたします。アカウント固有のお問い合わせは、support@expertini.comまでメールでご連絡ください。