getConfigurationGroups

Gets the display names for the groups with permission for the given configuration.

Applies to Clouds and Integration Appliances.

Parameters:

projectName
The name of the specified project.
version
The version number for the specified project.
configName
The configuration name for the specified project.

Together projectName, version, and configName uniquely identify a configuration.

Returns:
The group display names.

Examples:

The following example is a SOAP request to get configuration groups with permission for the specified configuration.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:dep="http://www.approuter.com/schemas/2008/1/deployment">
 <soapenv:Header>
  <dep:sessionId>AACA96757B36C2B4582C811197EE43C0</dep:sessionId>
 </soapenv:Header>
 <soapenv:Body>
  <dep:getConfigurationGroups>
   <dep:projectName>HTTP_363i</dep:projectName>
   <dep:version>1.0</dep:version>
   <dep:configName>HTTP_363j</dep:configName>
  </dep:getConfigurationGroups>
 </soapenv:Body>
</soapenv:Envelope>
The following example is the SOAP reply to the request.
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
 <S:Body>
  <ns2:getConfigurationGroupsResponse xmlns:ns2="http://www.approuter.com/
  schemas/2008/1/deployment" xmlns:ns3="http://www.approuter.com/schemas/2008/1/
  deployment/types" xmlns:ns4="http://www.approuter.com/schema/router/1000/
  security/03" xmlns:ns5="http://www.approuter.com/schemas/2008/1/util/types">
   <ns2:groupDisplayNames>
    <ns4:id>8D8D61C4EF435FDB63E543509B9F4978</ns4:id>
    <ns4:name>admin@A51EDD44BE6C10B2D1335A9D634D407D</ns4:name>
    <ns4:displayName>Administrator Group</ns4:displayName>
    <ns4:isActive>true</ns4:isActive>
    <ns4:isMutable>false</ns4:isMutable>
    <ns4:isVisible>true</ns4:isVisible>
    <ns4:createdTime>2010-04-02T22:44:46Z</ns4:createdTime>
    <ns4:scopeId>A51EDD44BE6C10B2D1335A9D634D407D</ns4:scopeId>
    <ns4:scopeType>Environment</ns4:scopeType>
    <ns4:groupType>Admin</ns4:groupType>
   </ns2:groupDisplayNames>
  </ns2:getConfigurationGroupsResponse>
 </S:Body>
</S:Envelope>