| UserManagerServicesGetGroupRoles Method  | 
        
        
          
         
            Retrieves the collection of Group Roles. Group Roles are specific combination of User Rights.
            Their purpose is to offer fast and more convenient way to apply and finalize permission to a new User Group.
            
 
    Namespace: 
   IngeniuxCMService
    Assembly:
   IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.308
 Syntax
Syntaxpublic XHRServiceResponseGeneric<GroupRoleInfo[]> GetGroupRoles()
Public Function GetGroupRoles As XHRServiceResponseGeneric(Of GroupRoleInfo())
public:
virtual XHRServiceResponseGeneric<array<GroupRoleInfo^>^>^ GetGroupRoles() sealed
abstract GetGroupRoles : unit -> XHRServiceResponseGeneric<GroupRoleInfo[]> 
override GetGroupRoles : unit -> XHRServiceResponseGeneric<GroupRoleInfo[]> 
Return Value
Type: 
XHRServiceResponseGenericGroupRoleInfoArray of information on existing Group Roles
 Examples
Examples
            Sample JSON return
            
{
    "code": 0,
    "error": null,
    "message": [{
        "name": "Basic Editing",
        "id": "GroupRoles\/1",
        "permissions": [1879681, 1879681]
    }, {
        "name": "Editing and Publishing",
        "id": "GroupRoles\/2",
        "permissions": [1879689, 1879689]
    }]
} See Also
See Also