TaxonomyTreeServicesRemoveAssociationsToCategory Method
|
Removes a list of Page associations to a given Category Node
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[]> RemoveAssociationsToCategory(
RemovePageCategorizationsInput data
)
Public Function RemoveAssociationsToCategory (
data As RemovePageCategorizationsInput
) As XHRServiceResponseGeneric(Of String())
public:
virtual XHRServiceResponseGeneric<array<String^>^>^ RemoveAssociationsToCategory(
RemovePageCategorizationsInput^ data
) sealed
abstract RemoveAssociationsToCategory :
data : RemovePageCategorizationsInput -> XHRServiceResponseGeneric<string[]>
override RemoveAssociationsToCategory :
data : RemovePageCategorizationsInput -> XHRServiceResponseGeneric<string[]>
Parameters
- data
- Type: RemovePageCategorizationsInput
Object containing the Category Id and the Ids of Pages to sever the associations
Examples
Sample JSON input
{
"data": {
"categoryId": "CategoryNodes/2",
"pageXIDs": ["x11"]
}
}
Return Value
Type:
XHRServiceResponseGenericStringArray of Page Ids, that were associated with the Category Node, and now associations were severed.
Remarks If Category doesn't exist, returns error status.
This operation requires current User to have the permission to manager Taxonomy System. If not, returns error status.
See Also