Administering an Encyclopedia volume : Administering security and authentication operations : Getting an access control list : Retrieving the ACL for a channel
 
Retrieving the ACL for a channel
To retrieve the ACL for a channel, use GetChannelACL. The request must specify the ChannelName or ChannelId, as shown in the following example:
<SOAP-ENV:Body>
<GetChannelACL>
<ChannelName>BargainBooks</ChannelName>
</GetChannelACL>
</SOAP-ENV:Body>
The preceding request returns the permissions for each security role or user that can access the channel and a TotalCount of the security roles or users that can access it. If the list exceeds the allowable maximum number of items to fetch, the response includes a FetchHandle to support retrieving the remaining items.
<SOAP-ENV:Body>
<GetChannelACLResponse>
<ACL>
<Permission>
<RoleName>Support</RoleName>
<RoleId>306</RoleId>
<AccessRight>RW</AccessRight>
</Permission>
<Permission>
<UserName>Raphael Grigory</UserName>
<UserId>554</UserId>
<AccessRight>RW</AccessRight>
</Permission>
</ACL>
<TotalCount>2</TotalCount>
</GetChannelACLResponse>
</SOAP-ENV:Body>