| UserManagerServicesDeleteGroups Method  | 
        
        
          
         
            Deletes a collection of User Groups.
            
 
    Namespace: 
   IngeniuxCMService
    Assembly:
   IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.308
 Syntax
Syntaxpublic XHRServiceResponseGeneric<string[]> DeleteGroups(
	UniqueObjectsDeleteParam data
)
Public Function DeleteGroups ( 
	data As UniqueObjectsDeleteParam
) As XHRServiceResponseGeneric(Of String())
public:
virtual XHRServiceResponseGeneric<array<String^>^>^ DeleteGroups(
	UniqueObjectsDeleteParam^ data
) sealed
abstract DeleteGroups : 
        data : UniqueObjectsDeleteParam -> XHRServiceResponseGeneric<string[]> 
override DeleteGroups : 
        data : UniqueObjectsDeleteParam -> XHRServiceResponseGeneric<string[]> Parameters
- data
- Type: UniqueObjectsDeleteParam
 Object containing the Id of the User Groups to be deleted  Examples Examples
            Sample JSON input
             {
    "data": {
        "selectedIds": ["UserGroups/100", "UserGroups/101", "UserGroups/102"]
    }
}
Return Value
Type: 
XHRServiceResponseGenericStringArray of Ids of User Groups that were actually deleted
 Examples
Examples
            Sample JSON return
            
{
    "code": 0,
    "error": null,
    "message": ["UserGroups\/100", "UserGroups\/101", "UserGroups\/102"]
} See Also
See Also