Click or drag to resize

UserManagerServicesDeleteGroups Method


Deletes a collection of User Groups.

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<string[]> DeleteGroups(
	UniqueObjectsDeleteParam data
)

Parameters

data
Type: UniqueObjectsDeleteParam

Object containing the Id of the User Groups to be deleted

Examples
Sample JSON input
JavaScript
{
    "data": {
        "selectedIds": ["UserGroups/100", "UserGroups/101", "UserGroups/102"]
    }
}

Return Value

Type: XHRServiceResponseGenericString

Array of Ids of User Groups that were actually deleted

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": ["UserGroups\/100", "UserGroups\/101", "UserGroups\/102"]
}
See Also