-
KanBo Installation
- KanBo Installation Guide (Microsoft 365 + Azure)
- KanBo Installation Guide (On-Premises)
- KanBo On-Premises Installation Requirements and Prerequisites
- Creating an X.509 High-Trust Certificate
- Creating and Updating Elastic Cloud Deployment
- Installing Elasticsearch on Windows
- Installing Elasticsearch on Debian
- Creating a Windows Virtual Machine on Azure for Elasticsearch
- Creating a Linux Based Virtual Machine on Azure for Elasticsearch
- KanBo Modern Web Part Installation
- Supported Browsers
- KanBo Setup
-
KanBo Updates
-
Additional Components
- Installing KanBo Teams App
- Installing KanBo Outlook Add-in
- Installing KanBo Mini Application
- Installing Nintex Integration
- Installing Autodesk BIM Plugin
- Configuring UiPath Integration
- Installing and Configuring Power Automate Integration
- KanBo External User Groups (Active Directory Integration)
- User Auto-Provisioning on First Access (SharePoint Plugin)
- SharePoint Profile Synchronization
- Configuring Sync Targets
- SharePoint Site Collection Balancing and Admin Warnings
- Setting Up BIM Sync WebJob
- Configuring OData Integration for Power BI Desktop
- KanBo PowerShell Commandlets
- Direct Sync of SharePoint Lists with KanBo
- Enabling KanBo Email Notifications (Azure)
- Enabling KanBo Email Notifications (On-Premises)
- Enabling OneDrive Integration in KanBo
- Enabling Sending Card Messages as Emails
- Enabling Sending Emails to KanBo (Microsoft 365 + Azure)
- Enabling Sending Emails to KanBo (On-Premises)
- Prometheus and Grafana configuration for KanBo metrics
- Show all articles ( 3 ) Collapse Articles
-
Tips & Tricks
- Configuring Document Opening Behavior in KanBo
- Disabling Sleeping Tabs in Browsers
- Disabling Public Space Creation in KanBo
- Checking Certificate Expiration Dates (On-Premises)
- KanBo License ID
- Checking KanBo Version
- Changing the Help URL in KanBo
- Renewing Microsoft Graph Certificate
- Disabling Profile Picture Sync in Profile Sync Job
- Creating and Customizing Profile Sync WebJob
- Configuring KanBo for Microsoft Azure GCC High Environment
-
Troubleshooting
Creating and Customizing Profile Sync WebJob
Overview
This article explains how to set up and modify the Profile Sync WebJob to exempt certain elements of the KanBo user profile from syncing with the Microsoft 365 profile.
WebJob configuration file
The Profile Sync configuration file is very similar to the Group Sync configuration file. It begins with the DB connection string:
- Insert the same connection string that you are using for your KanBo.
"ConnectionStrings": {
"KanBo": "FILL-ME"
}, Next is the main configuration section, which looks like this:
{
"type": "package",
"name": "auth-aad",
"client-id": "FILL-ME",
"tenant": "FILL-ME",
"thumbprint": "FILL-ME"
},
{
"type": "package",
"name": "kanbo-api",
"url": "FILL-ME",
"thumbprint": "FILL-ME"
},
{
"type": "job.profile-sync",
"name": "profiles"
},
{
"type": "profiles-provider.graph",
"children": [
[
"mapping",
{
"graph": "responsibilities",
"kanbo": "AskMeAbout",
"type": "string[]",
"separator": ", "
}
],
{
"type": "mapping",
"graph": "aboutMe",
"kanbo": "AboutMe"
},
{
"type": "mapping",
"graph": "givenName",
"kanbo": "Name"
},
{
"type": "mapping",
"graph": "surname",
"kanbo": "Surname"
},
{
"type": "mapping",
"graph": "manager",
"kanbo": "Manager"
},
{
"type": "mapping",
"graph": "mobilePhone",
"kanbo": "Phone"
},
[
"mapping",
{
"size": "360x360",
"kanbo": "Picture",
"type": "photo"
}
]
]
} - For the strings below, enter the same values that you used in the KanBo configuration and the Group Sync job.
{
"type": "package",
"name": "auth-aad",
"client-id": "FILL-ME",
"tenant": "FILL-ME",
"thumbprint": "FILL-ME"
}, - In this section, provide the URL of your Kanban (including the https://) and the same thumbprint that you used in the previous section.
{
"type": "package",
"name": "kanbo-api",
"url": "FILL-ME",
"thumbprint": "FILL-ME"
}, The rest of the configuration consists of sync mappings. Most of the mapping sections will look like this:
{
"type": "mapping",
"graph": "O365 information",
"kanbo": "KanBo equivalent"
}, They are self-explanatory in terms of what they sync with. The following is synced in this fashion:
- KanBo users’ first name with M365 given name
- KanBo users’ surname with M365 surname
- KanBo users’ managing user with M365 manager
- KanBo users’ phone number with M365 phone number
- KanBo users’ “About Me” section with M365 “About Me” section
The only synchronization targets written differently due to requiring additional options are:
- The KanBo “Ask Me About” section contains a list of responsibilities in M365.
- The KanBo profile picture is the same as the one on M365.
Removing the synchronization of specific items is as simple as removing the corresponding section from the appsettings.json file.
In newer installations, the KanBo User Email synchronization section is removed by default.
- To re-add synchronization, add this section to appsettings.json.
{
"type": "mapping",
"graph": "mail",
"kanbo": "Email"
}, Was this article helpful?
Please, contact us if you have any additional questions.
