GetUserDetails
This method is used to return the list of GetUserDetails of Cisco Intersight created in HCL BigFix CLM.
Method Signature:
GetUserDetails (async, callback)
Sample Response:
{
"entityId": "USER-51249E46-792E-41D4-87C5-3CF44FF856A1",
"userId": "requester",
"userName": "requester",
"userType": "OrganizationUser",
"organizationName": "hclorg",
"email": "requester@hcl.com",
"rbacGroups": [
{
"groupId": "8",
"groupName": "Requester",
"groupCode": "REQ",
"isSystemGroup": true
}
],
"adGroups": [],
"roles": [
{
"roleId": "8",
"roleName": "Requester",
"roleCode": "REQ",
"parentRoleCode": "",
"parentRoleName": "",
"isSystemRole": true
}
]
}
Parameter Details:
| Parameter Name | Type | Mandatory | Description |
|---|---|---|---|
| async | Boolean | N |
In case it’s False: Function will be called in synchronous mode. i.e., Current execution will wait for method execution to complete In case it’s True: Function will be called asynchronously. Execution will not wait for method execution completion. It will jump to next statement. |
| Callback | Function | N | User can pass function name that can be executed on completion of Parent function call. |