Hi
I want to remove a user from all the ACLs in which the user is present am trying to do it through a DQL(to get list of all the ACLs in which user is present) and a set of API commands(to revoke the access)
The below DQL
Select object_name from dm_acl wherer_accessor_name='username'
and the API commands
retrieve,c,dm_acl where object_name = 'ACLnameFrom Above Query'
revoke,c,l,username
save,c,l
this is working fine manually
I want to implement the same or list of users via DFC code Can anyone please help me how to write the set of API commands in DFC code ?