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.3.169
Syntax
public XHRServiceResponseGeneric<string[]> RemoveAssociationsToCategory(
	RemovePageCategorizationsInput data
)

Parameters

data
Type: RemovePageCategorizationsInput

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

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

Return Value

Type: 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