AD Attributes Import Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2020 06:22 AM
I am trying to implement LDAP integration for Users and Groups.
I am able to fetch almost all the required attributes to my ldap import set except below attributes
In Users - Enabled, Modified, Created . In Groups - GroupCategory
I have defined them correctly in LDAP Servers -> Attributes and my AD team confirmed that the above attribute names are valid but not sure why the attributes are not fetched from AD.
I have seen some community posts where users have already faced this issue but solution was not mentioned in these posts.
Please let me know how to fix this issue. These attributes are essential for our import and its urgent for me to resolve this issue. Appreciate your inputs.
- Labels:
-
Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2020 11:51 AM
Taking a wild guess here, but those look like AD attributes to me, not LDAP attributes. I believe the attributes you want to grab are:
AD Attribute | LDAP Attribute | |
User | Enabled | userAccountControl |
Modified | whenModified | |
Created | whenCreated | |
Group | GroupCategory | groupType |
Beware, though, that both the userAccountControl and groupType are calculated values (not sure if that's the proper name), so you'll have to do some extra work to get usable values out of them.