Is there a Web services API call that I can call to find out what privileges a user named chris_smith has on a folder named /shared/CUST/test_folder?
Welcome to "KB Articles"
Is there a Web services API call that I can call to find out what privileges a user named chris_smith has on a folder named /shared/CUST/test_folder?
book
Article ID: KB0082440
calendar_today
Updated On: 03-02-2018
Products
Versions
TIBCO Data Virtualization
7.0.0 and higher
Description
The following Web services API call will get the privilege information for all users on a particular folder: /services/webservices/system/admin/resource/operation /getResourcePrivileges() You will need to search for the user chris_smith in the output. The XML input for the call is below: <resource:getResourcePrivileges xmlns:resource="http://www.compositesw.com/services/system/admin/resource"> <resource:entries> <resource:entry> <resource:path>/shared/CUST/test_folder</resource:path> <resource:type>CONTAINER</resource:type> </resource:entry> </resource:entries> <resource:includeColumnPrivileges>0</resource:includeColumnPrivileges> </resource:getResourcePrivileges>Example
Issue/Introduction
Is there a Web services API call that I can call to find out what privileges a user named chris_smith has on a folder named /shared/CUST/test_folder?