PageCreationRulesAdminServicesGetSupportTypeChoices_AvailableGroups Method 
             | 
          
        
        
          
         
            Retrieves the available User Groups for Page Creation Rule security assignment.
            These are the groups that are not assigned to Page Creation Rule yet.
            
 
    Namespace: 
   IngeniuxCMService
    Assembly:
   IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.308
Syntaxpublic XHRServiceResponseGeneric<PcrSupportTypeChoice_Group[]> GetSupportTypeChoices_AvailableGroups(
	PcrSupportTypeInput data
)
Public Function GetSupportTypeChoices_AvailableGroups ( 
	data As PcrSupportTypeInput
) As XHRServiceResponseGeneric(Of PcrSupportTypeChoice_Group())
public:
virtual XHRServiceResponseGeneric<array<PcrSupportTypeChoice_Group^>^>^ GetSupportTypeChoices_AvailableGroups(
	PcrSupportTypeInput^ data
) sealed
abstract GetSupportTypeChoices_AvailableGroups : 
        data : PcrSupportTypeInput -> XHRServiceResponseGeneric<PcrSupportTypeChoice_Group[]> 
override GetSupportTypeChoices_AvailableGroups : 
        data : PcrSupportTypeInput -> XHRServiceResponseGeneric<PcrSupportTypeChoice_Group[]> Parameters
- data
 - Type: PcrSupportTypeInput
Information containing User Ids that were already assigned to Page Creation Rule
Examples
            Sample JSON input
            
{
    "data": {
        "listingType": "availableGroups",
        "selectedIds": "UserGroup/1",
        "selectedEmails": ""
    }
} 
Return Value
Type: 
XHRServiceResponseGenericPcrSupportTypeChoice_GroupArray of information of User Groups that weren't assigned to Page Creation Rule yet
Examples
            Sample JSON return
            
{
    "code": 0,
    "error": null,
    "message": [{
        "name": "Authors",
        "id": "UserGroups\/1",
        "userIds": ["ingeniux\\author"]
    }]
}
See Also