Click or drag to resize

SystemOptionsServicesRemoveGroupProfileForTinyMCESettings Method


Removes a User Group override on a specific XHTML editor setting.

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<GroupProfileRemovalResult> RemoveGroupProfileForTinyMCESettings(
	GroupProfileRemovalParam data
)

Parameters

data
Type: GroupProfileRemovalParam

Object containg the settings name and the User Group to remove the profile for.

Examples
Sample JSON input
JavaScript
{
    "data": {
        "groupId": "UserGroups/1",
        "settingName": "Fonts"
    }
}

Return Value

Type: XHRServiceResponseGenericGroupProfileRemovalResult

Object containing the settings name and User Group Id to remove the profile on. Also, whether the profile was removed or not.

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "settingName": "Fonts",
        "groupId": "UserGroups\/1",
        "removed": false
    }
}
Remarks

If override profile doesn't exist for the given User Group, returns false

See Also