PageCreationRulesAdminServicesDelete Method
|
Deletes Page Creation Rules that matche given unique Ids
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
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
Sample JSON return
{
"code": 0,
"error": null,
"message": ["PageCreationRules\/34", "PageCreationRules\/33"]
}
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
Sample JSON input
{
"data": {
"selectedIds": ["PageCreationRules/34", "PageCreationRules/33"]
}
}
See Also