Integrate LDAP sync in your enterprise applications with ease


Tailor-made features

Cut time and costs with done-for-you synchronization.
Don’t reinvent the wheel. Save time and cut costs by using a solution made specifically for synchronizing LDAP directories.

Handle syncs of any complexity
Directory structures and items can be nested and difficult to map out accurately. Tested on over hundreds of corporate networks, LDAP Connector can sync directories of any complexity.

Point and consume
Install our agent, point to your directory, then specify the cloud storage (Amazon SQS, S3 and others) where you want the data to be stored. Get a JSON, XML or raw format file, ready for consumption.

Intuitive user interface
Whether you’re working with one or multiple directories, our intuitive UI makes the whole process a breeze. In addition, you can create custom filtering rules and schedule syncs for specific hours.
Example: listening to LDAP change events
sqs.receiveMessage({QueueUrl: "https://sqs.eu-central-1.amazonaws.com/xxx/LdapConnector.fifo"}, function (_, data) {
data.Messages.forEach(message => {
var directoryEvent = JSON.parse(message.Body)
console.log(`⭐ Received directory event of type ${directoryEvent.EventType}`)
switch (directoryEvent.EventType) {
case 'NewEntities':
directoryEvent.DsEntities.forEach(
(entity) => console.log(`${entity.Name} was added`))
case 'ChangedEntities':
directoryEvent.DsEntities.forEach(
(entity) => console.log(`${entity.Name} was updated`))
case 'DeletedSyncEntities':
directoryEvent.DsSyncEntities.forEach(
(entity) => console.log(`${entity.Entity.Name} was removed`))
}
});
})
Code Sample
Once LDAP Connector has synced the changes from the directory to your destination (Amazon SQS or S3), the data can be easily consumed as needed through your own integrations. Here is an example NodeJS program that parses LDAP change events (new entities, changed entities or deletions) from SQS:
Our 16 years of achievements
With our super powers we have reached this
1000+
Happy customers globally, 10% from Fortune 1000, 400 from the USA
25,000+
Engineering and non-engineering software applications supported
15+
Industries served
15%
Minimum IT License cost savings annually
Ready to sync?
We offer new users a 6-month trial for LDAP Connector.
Have questions? Need a custom implementation?