Employee Onboarding Orchestration
Coordinate the multi-department new-hire onboarding process — from IT provisioning and HR paperwork to manager introductions and training enrollment. Ensure nothing falls through the cracks.
On this page
Visual Flow
Rendering diagram…
When to Use This Pattern
Use employee onboarding orchestration when:
- New hires require tasks from 4+ departments (IT, HR, Facilities, Training, Finance, Security)
- Onboarding is inconsistent — some new hires get everything, others are missing equipment on day one
- Managers complain that onboarding takes too long or requires too much manual coordination
- You want to measure onboarding quality and identify bottlenecks
How It Works
Rendering diagram…
Implementation Guide
Step 1: Define the Onboarding Checklist
Build a comprehensive checklist organised by department and timing:
| Department | Task | Due Before | Priority |
|---|---|---|---|
| HR | Generate offer letter | -14 days | Critical |
| HR | Send employment contract for e-sign | -10 days | Critical |
| IT | Create email account | -5 days | Critical |
| IT | Order and configure laptop | -7 days | Critical |
| IT | Grant system access (based on role) | -3 days | Critical |
| Facilities | Assign desk/workspace | -5 days | High |
| Facilities | Order building badge | -5 days | High |
| Security | Initiate background check | -14 days | Critical |
| Security | Send NDA for e-sign | -10 days | Critical |
| Finance | Set up payroll | -5 days | Critical |
| Training | Enroll in orientation program | -3 days | High |
| Manager | Prepare first-week schedule | -3 days | High |
| Manager | Assign buddy/mentor | -3 days | Medium |
Step 2: Trigger the Workflow
The onboarding workflow starts when:
- HR creates a new hire record in the HR system
- A hiring manager completes a "New Hire Request" form
- The offer letter is signed by the candidate
Include all the data downstream tasks need:
- Employee name, email, start date
- Department, role, manager
- Office location
- Role-specific requirements (special software, certifications)
Step 3: Fan Out to Departments
Use the Fan-Out / Fan-In pattern to assign all tasks simultaneously:
- Create one task per department with the specific items for that team
- Set due dates based on the start date (work backwards)
- Include role-specific variations — a developer needs different IT setup than a sales rep
- Allow task delegation — if the IT point person is OOO, use Delegation on Absence
Step 4: Track Progress
Build a dashboard showing onboarding status:
| New Hire | Start Date | IT | HR | Facilities | Training | Finance | Security | Overall |
|---|---|---|---|---|---|---|---|---|
| Jane Smith | Mar 15 | ✅ | ✅ | ⏳ | ✅ | ✅ | ✅ | 86% |
| Bob Jones | Mar 22 | ⏳ | ✅ | ❌ | ⏳ | ⏳ | ✅ | 33% |
Step 5: Day-1 Readiness Check
The day before the start date:
- Check if all critical tasks are complete
- If any critical task is incomplete → escalate to the department manager
- Send a day-1 package to the new hire: where to go, who to ask for, what to bring
- Send a reminder to the manager with the new hire's schedule
Step 6: Post-Onboarding Follow-Up
Schedule automated check-ins:
| Timing | Action |
|---|---|
| Day 7 | Survey: "Do you have everything you need?" |
| Day 30 | Manager check-in: "How is the new hire settling in?" |
| Day 60 | Training progress review |
| Day 90 | Probation review reminder to manager |
Tips & Best Practices
Start onboarding before the start date, not on it. If IT orders a laptop on day one, the employee sits idle for 3 days waiting. The best onboarding workflows start 2-3 weeks before the start date.
- Create role-based templates. A "Developer Onboarding" template has different tasks than "Sales Rep Onboarding". Maintain separate checklists per role.
- Measure time-to-productivity. Track how long it takes from start date to "fully set up" (all tasks complete). Aim for <3 days.
- Automate what you can. IT account creation, group membership, license assignment — these can often be fully automated via Microsoft Graph, Azure AD, or RPA.
- Collect feedback. At day 30, ask the new hire to rate their onboarding experience. Use this to continuously improve.
Related patterns
Employee Offboarding & Deprovisioning
Automatically cut access, recover assets, and close loops when an employee or contractor leaves. Cleanup that's boring when it works and catastrophic when it doesn't.
Customer Self-Service Registration
Allow customers to register, provide required documentation, and get verified through an automated workflow. Reduce manual intake work while maintaining KYC and compliance requirements.
Vendor Qualification Pipeline
Evaluate, verify, and approve new vendors before they can do business with your organisation. Collect documentation, perform due diligence, assess risk, and make go/no-go decisions.