Viewing the ACL of a group

Use the Group management API to view the access control list of a group.

Procedure

  1. Open a command prompt and run a REST call via cURL.
    Example
    
    curl -k -u "xsadmin:xsadmin4Me!"
    https://<hostname.domain.com>:9445/wxsadmin/v1/group/{groupname}/permissions 
    -X GET
    where
    • xsadmin:xsadmin4Me! specifies the user ID and password for XSLD.
    • https://<hostname.domain.com>:9445/wxsadmin/v1/group/{groupname}/permissions 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.
      • groupname is the name of the group you want to view permissions for.
    A complete example of this command with the output,
    curl -k -u "xsadmin:xsadmin4Me!" 
    https://jsmith.abc.com:9445/wxsadmin/v1/group/acmeGroup/permissions -X GET 
    The output lists the ACLs of the group acmeGroup. This group has Read permissions to the data grid, "Grid".
    
    [{"permissions":["Read"],"resourceName":"g1","resourceType":"Grid"}]
  2. A successful response code is returned as 200.