Viewing the ACL of a group
Use the Group management API to view the access control list of a group.
Procedure
-
Open a command prompt and run a REST call via cURL.
Example
wherecurl -k -u "xsadmin:xsadmin4Me!" https://<hostname.domain.com>:9445/wxsadmin/v1/group/{groupname}/permissions -X GET
specifies the user ID and password for XSLD.xsadmin:xsadmin4Me!
is the fully qualified host name and port number of the cache member group. It also contains the context root for the Admin REST server and the REST call to get and retrieve permissions of a group.https://<hostname.domain.com>:9445/wxsadmin/v1/group/{groupname}/permissions- groupname is the name of the group you want to view permissions for.
A complete example of this command with the output,
The output lists the ACLs of the group acmeGroup. This group has Read permissions to the data grid, "Grid".curl -k -u "xsadmin:xsadmin4Me!" https://jsmith.abc.com:9445/wxsadmin/v1/group/acmeGroup/permissions -X GET[{"permissions":["Read"],"resourceName":"g1","resourceType":"Grid"}] - A successful response code is returned as 200.