← Back to Blog

Docebo Connect + HiBob integration: a setup guide for SMEs

Docebo ConnectHRIS
Concept illustration for Docebo Connect + HiBob integration: a setup guide for SMEs

For a European SME that runs people ops in HiBob and learning in Docebo, the integration is the difference between an HR system that feeds the LMS automatically and two systems that drift apart by week three. Docebo Connect for HiBob closes that gap with a scheduled sync of employee data — joiners, leavers, department changes, manager reassignments — driving Docebo user records from the single source of truth.

This guide walks through the setup shape we use for SME deployments, the field mapping that survives a real HR lifecycle, and the GDPR considerations that apply when employee data flows between systems.

Why HiBob-to-Docebo is worth automating

Manual employee sync between HiBob and Docebo tends to break in three predictable places. New hires get added to HiBob on day one, but get onboarded to Docebo three weeks later when someone remembers. Leavers get offboarded in HiBob, but their Docebo account stays active until the next ad-hoc cleanup. Department moves in HiBob do not flow through, so Docebo learning-path assignments follow an increasingly fictional org chart.

A scheduled Docebo Connect recipe — typically running every 15 minutes or hourly — reduces all three failure modes to observable events with an audit log. For SMEs operating under GDPR, that audit log is a direct input to the Article 30 Record of Processing: the data categories flowing between systems are named, the retention policy is enforceable, and the leaver case is handled deterministically.

Prerequisites worth getting right before you build

Five things we confirm in week 1 of an SME integration build:

The authoritative Docebo reference for the connector sits at help.docebo.com; the product overview is at docebo.com.

Field mapping that survives a real HR lifecycle

The field mapping is the artefact that takes the longest to get right and the shortest to write once you have it. A baseline mapping for a typical SME:

HiBob fieldHiBob API pathDocebo fieldDocebo API pathTransform
Work Emailwork.emailemailuser.emailTRIM, LOWER
First NamefirstNamefirstnameuser.firstnameTRIM
Last Namesurnamelastnameuser.lastnameTRIM
Employee IDinternal.iduseriduser.useridPREFIX(BOB-)
Departmentwork.departmentbranch_iduser.branch_idLOOKUP(dept_to_branch)
Job Titlework.titleadditional_field_1user.additional_fields[0]TRIM
Start Datework.startDateadditional_field_2user.additional_fields[1]DATE_FORMAT
Manager Emailwork.reportsTo.emailmanager_iduser.managerLOOKUP(email_to_userid)
Statusinternal.statusstatususer.statusMAP(Active=0, Inactive=1)

Two rules we enforce on every deployment: department → branch is always a lookup table (never free-text matching), and manager → manager_id is always a two-step lookup via email → Docebo userid (never positional).

Sample API calls for sanity testing

Before switching on the scheduled recipe, we run two read-only calls against the HiBob sandbox to confirm the data shape we expect:

# List all active employees
curl "https://api.hibob.com/v1/people?showInactive=false" \
  -H "Authorization: Basic BASE64(SERVICE_USER_ID:TOKEN)" \
  -H "Accept: application/json"

# Fetch a single employee record
curl "https://api.hibob.com/v1/people/EMPLOYEE_ID" \
  -H "Authorization: Basic BASE64(SERVICE_USER_ID:TOKEN)" \
  -H "Accept: application/json"

If either call returns 401, the service user credentials are wrong. If they return 200 but the field shape does not match the HiBob API reference, someone on the HR side has probably renamed a custom field and not told engineering. Both are better to find in sandbox than in production.

GDPR considerations the integration must respect

Flowing employee data between HiBob and Docebo is a processing activity under GDPR. Three anchors that have to be in the SME’s Record of Processing:

A clean integration ships with these answers documented in a short processing note attached to the recipe — which also doubles as the onboarding document when the next HR admin inherits the system.

A realistic go-live timeline

For an SME with one HiBob tenant and one Docebo instance, we plan the integration across two weeks: week 1 for prerequisites, field mapping sign-off, and sandbox validation; week 2 for production cutover, monitoring, and a first reconciliation pass. For eligible Spanish SMEs, the Kit Digital scheme covers up to €12,000 for digitalisation projects and this work fits comfortably inside the eligible scope when packaged as an LMS deployment.

Ready to get started?

Working on this yourself? J4SGON S.L. delivers Docebo Connect, HRIS, SSO and migration work for European organisations — see what a scoped engagement covers or describe your project and we will reply with a written scope.

Tell us what you are integrating or migrating

Send the platform, the systems involved and where you are stuck. You get a written scope back — phases, deliverables and what is out of scope — before anything is billed.

Related Articles