Click or drag to resize

TaxonomyTreeServicesGetCategoryAssociations Method


Retrieves all the Pages associated with given Category.

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<string[][]> GetCategoryAssociations(
	CategoryAssociationManipulationInput data
)

Parameters

data
Type: CategoryAssociationManipulationInput

Object containing the Id of the Category to retrieve associations for

Examples
Sample JSON input
JavaScript
{
    "data": {
        "categoryId": "CategoryNodes/2"
    }
}

Return Value

Type: XHRServiceResponseGenericString

Array of associated Pages' Id and Name

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": [["x9", "Terms"], ["x11", "About Us"]]
}
See Also