SystemOptionsServicesRemoveGroupProfileForTinyMCESettings Method
|
Removes a User Group override on a specific XHTML editor setting.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<GroupProfileRemovalResult> RemoveGroupProfileForTinyMCESettings(
GroupProfileRemovalParam data
)
Public Function RemoveGroupProfileForTinyMCESettings (
data As GroupProfileRemovalParam
) As XHRServiceResponseGeneric(Of GroupProfileRemovalResult)
public:
virtual XHRServiceResponseGeneric<GroupProfileRemovalResult^>^ RemoveGroupProfileForTinyMCESettings(
GroupProfileRemovalParam^ data
) sealed
abstract RemoveGroupProfileForTinyMCESettings :
data : GroupProfileRemovalParam -> XHRServiceResponseGeneric<GroupProfileRemovalResult>
override RemoveGroupProfileForTinyMCESettings :
data : GroupProfileRemovalParam -> XHRServiceResponseGeneric<GroupProfileRemovalResult>
Parameters
- data
- Type: GroupProfileRemovalParam
Object containg the settings name and the User Group to remove the profile for.
Examples
Sample JSON input
{
"data": {
"groupId": "UserGroups/1",
"settingName": "Fonts"
}
}
Return Value
Type:
XHRServiceResponseGenericGroupProfileRemovalResultObject 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
{
"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