For the complete documentation index, see llms.txt. This page is also available as Markdown.

Automated Joiner-Mover-Leaver Playbook with BambooHR and EntraID

Overview

This document provides a step-by-step, walkthrough for configuring and using Joiner–Mover–Leaver (JML) Playbooks in BalkanID. It covers the complete setup flow from integrating your HRIS and Microsoft Entra ID, to configuring webhooks with HRIS and n8n, and finally executing playbook actions that automatically create, route, and approve access requests based on defined policies.

While this guide is specific to BambooHR and EntraID, the same concepts apply to other HR systems and applications for which provisioning & de-provisioning are supported by BalkanID.

What Are JML Playbooks?

JML Playbooks in BalkanID allow you to automate identity and access workflows triggered by employee lifecycle events such as:

  • Joiner: A new employee starts

  • Mover: An employee changes role, department, or title

  • Leaver: An employee exits the organization

Playbooks can automatically:

  • Create access requests

  • Route requests for approval or auto-approval based on policy

  • Trigger provisioning and deprovisioning workflows

  • Maintain a complete audit trail within your BalkanID tenant

Playbooks can be triggered in real time via webhooks or run automatically based on defined conditions, providing consistency, speed, and governance across identity workflows.

Pre-requisites

Before you begin, ensure the following are in place:

  • An active BalkanID tenant accessible at https://<yourdomain>.app.balkan.id

  • Administrator access in BambooHR (or your HRIS) to configure API keys and webhooks

  • Global Administrator access in Microsoft Entra ID for integration setup

  • An active n8n instance (cloud-hosted or self-hosted)

This guide uses n8n-based workflows as an example, BalkanID playbooks supports multiple workflows. If you use a different workflow orchestration platform or custom scripts, please contact BalkanID Support: support@balkan.id

Integration Setup

1. Configure HRIS - BambooHR Integration

  1. Log in to <yourdomain>.app.balkan.id

  2. Navigate to Configure → Integrations

  3. Click Add Integration

  4. Search for and select 'Merge'

  5. Provide a description and assign an owner

  6. Click on 'Get Access Token'

  7. Complete the setup using either:

    • API Key authentication, or

    • Credential-based authentication (as supported by your HRIS)

  8. Click on next to move onto Optional Configuration.

    1. Fill Optional configuration, if required.

    2. Once you filled in the information, click Save. Your integration is now configured and you will see the status of the integration displayed alongside other integrations on the Integrations page. When data is available, the integration Status will read Connected and the integration Message will read Data available.

2. Configure Microsoft Entra ID Integration

BalkanID recommends using a dedicated service account for Entra ID integrations instead of a personal user account.

Follow the official setup guide here:

This integration enables BalkanID to evaluate identity attributes, roles, and group memberships required for access decisions.

Webhook Configuration: BambooHR ↔ n8n

n8n Playbook Setup

  1. Download the playbook JSON file provided by the BalkanID team. If you have not yet received the file, please contact support@balkan.id to request it.

  2. Import the workflow into your n8n instance

  3. Configure credentials:

    • Create a new BalkanID API Key from <yourdomain>.app.balkan.id → Account → API Keys and use it in playbook configuration

  4. Initialize configuration variables in the workflow nodes

  5. Activate the workflow

Once active, the n8n workflow listens for HRIS events and triggers the appropriate BalkanID playbook.

BambooHR API and Webhook setup

To enable real-time JML automation, BambooHR events must be forwarded to n8n using webhooks.

Step 1: Create a BambooHR API Key

  1. Log in to BambooHR as an administrator

  2. Navigate to My Account → API Keys

  3. Click Add New Key

  4. Name the key (for example: BalkanID-Playbooks-API)

  5. Save the API key securely

Step 2: Create BambooHR Webhooks

Each JML playbook requires a separate webhook, as the triggering data differs by event type. Navigate to Account —> Settings —> Webhook(Create Webhook)

Joiner Webhook

  • Enter a meaningful name for the webhook (for example, Joiner Webhook)

  • In 'What fields do you want to monitor?' and 'What fields do you want to post?', select Employee #

  • For 'What format should the data be in?', select JSON

  • In 'Where should the data be posted?', enter the production webhook URL generated from n8n

    • Example: https://balkanid.app.n8n.cloud/webhook/<webhook-id>

  • Save the webhook configuration

Mover Webhook

  • Enter a meaningful name for the webhook (for example, Mover Webhook)

  • In 'What fields do you want to monitor?' and 'What fields do you want to post?,' select Department, Job TitleFor

  • 'What format should the data be in?', select JSON

  • In Where should the data be posted?, enter the production webhook URL generated from n8n

    • Example: https://balkanid.app.n8n.cloud/webhook/<webhook-id>

  • Save the webhook configuration

Leaver Webhook

  • Enter a meaningful name for the webhook (for example, Leaver Webhook)

  • In 'What fields do you want to monitor?' and 'What fields do you want to post?,' select Employment Status

  • In 'What format should the data be in?', select JSON

  • In Where should the data be posted?, enter the production webhook URL generated from n8n

    • Example: https://balkanid.app.n8n.cloud/webhook/<webhook-id>

  • Save the webhook configuration

Playbooks in Action

Joiner Playbook Flow

The Joiner playbook automates identity creation and access provisioning when a new employee joins the organization.

  1. A new employee record is created in BambooHR

  2. A Webhook or scheduled sync sends the event to BalkanID

  3. The Joiner playbook is triggered

  4. A user account is created in Entra ID on the employee’s start date

  5. The playbook:

    • Applies preferred email formats

    • Detects and resolves name or email conflicts

  6. Birthright access is determined using peer analysis based on attributes such as:

    • Job title

    • Department

    • Manager

    • Employment type

  7. BalkanID generates access grant requests

  8. Requests are:

    • Auto-approved via policies(see how to create policies here, or

    • Manually approved by designated approvers

  9. Approved access is provisioned in Entra ID

  10. The newly created corporate email address is written back to BambooHR

  11. Login credentials are securely shared with the employee’s manager

Leaver Playbook

The Leaver playbook ensures timely deprovisioning when an employee is terminated.

  1. An employee is marked as terminated in BambooHR

  2. The termination event is sent to BalkanID Leaver playbook and is triggered

  3. BalkanID generates access revoke requests

  4. Requests are:

Auto-approved through policy, or

Routed for manual approval

  1. Upon approval, the user is suspended in Entra ID, preventing further access

Mover Playbook

The Mover playbook manages access changes when an employee’s attributes change.

  1. An employee’s attributes (job title, department, manager, employment type, etc.) are updated in BambooHR

  2. The change is detected and the Mover playbook is triggered

  3. BalkanID recalculates the employee’s required access

  4. Access grant and revoke requests are generated

  5. Requests are:

Auto-approved using policies, or

Sent for manual approval

  1. Approved changes are provisioned in Entra ID