GetUserDependentDetails
This method is used to fetch details for AD users only when we mapped AD columns value with different custom columns in HCL BigFix CLM Table. For example, If we want to get manager details of the users. All the manager details are stored on “CustomField2” column and user mapping with manager stored in “CustomField1” column.
Method Signature:
GetUserDependentDetails(email, dependentOnColumnName, dependentMatchColumnName)
Sample Response:
[{"EntityID":"USER-336255B2-0029-4381-AF1B-22CEEB9C73A6","UserId":"testuser",
"UserName":"testuser","Email":"testuser@hcl.com","RoleName":"Business",
"ManagerCode":"","CustomField1":"CN=ABC User,HCLISD.com","CustomField2":"CN=xxxx,HCLISD.com",
"CustomField3":"","CustomField4":"","CustomField5":"",
"CustomField6":"","CustomField7":"","CustomField8":"","CustomField9":"","CustomField10":""}]
Parameter Details:
| Parameter Name | Type | Mandatory | Description |
| String | Y | It contains the user Email id. | |
| dependentOnColumnName | string | Y | It Contains the column name on which we kept the details of the parent like “CustomField1”. |
| dependentMatchColumnName | String | Y | It contains the column name on which we will get all the parent details like “CustomField2”. |