Click or drag to resize

TaxonomyTreeServicesRemoveAssociationsToCategory Method


Removes a list of Page associations to a given Category Node

Namespace: IngeniuxCMService
Assembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntax
public XHRServiceResponseGeneric<string[]> RemoveAssociationsToCategory(
	RemovePageCategorizationsInput data
)

Parameters

data  RemovePageCategorizationsInput

Object containing the Category Id and the Ids of Pages to sever the associations

Example
Sample JSON input
JavaScript
{
    "data": {
        "categoryId": "CategoryNodes/2",
        "pageXIDs": ["x11"]
    }
}

Return Value

XHRServiceResponseGenericString

Array 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