UserManagerServicesDeleteGroups Method Ingeniux CMS Web Services API

Deletes a collection of User Groups.

Namespace: IngeniuxCMService
Assembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 9.0.565.0 (9.0.565)
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

Reference