| PageCreationRulesAdminServicesDelete Method  | 
        
        
          
         
            Deletes Page Creation Rules that matche given unique Ids
            
 
    Namespace: 
   IngeniuxCMService
    Assembly:
   IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
 Syntax
Syntaxpublic XHRServiceResponseGeneric<string[]> Delete(
	PcrDeleteRuleParam data
)
Public Function Delete ( 
	data As PcrDeleteRuleParam
) As XHRServiceResponseGeneric(Of String())
public:
virtual XHRServiceResponseGeneric<array<String^>^>^ Delete(
	PcrDeleteRuleParam^ data
) sealed
abstract Delete : 
        data : PcrDeleteRuleParam -> XHRServiceResponseGeneric<string[]> 
override Delete : 
        data : PcrDeleteRuleParam -> XHRServiceResponseGeneric<string[]> Parameters
- data
- Type: PcrDeleteRuleParam
 Array of Page Creation Rule Id to delete
Return Value
Type: 
XHRServiceResponseGenericStringCollection of valid Page Creation Rule Ids that have been removed.
 Examples
Examples
            Sample JSON return
            
{
    "code": 0,
    "error": null,
    "message": ["PageCreationRules\/34", "PageCreationRules\/33"]
} Remarks
RemarksAny Ids that doesn't exist in Page Creation Rules collection will be ignored. Only valid Page Creation Rule Ids will be returned after they are deleted.
 Examples
Examples
            Sample JSON input
            
{
    "data": {
        "selectedIds": ["PageCreationRules/34", "PageCreationRules/33"]
    }
} See Also
See Also