Click or drag to resize

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.3.169
Syntax
public XHRServiceResponseGeneric<GroupRoleInfo[]> GetGroupRoles()

Return Value

Type: XHRServiceResponseGenericGroupRoleInfo

Array of information on existing Group Roles

Examples
Sample JSON return
JavaScript
{
    "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