TaxonomyTreeServicesGetCategoryAssociations Method Ingeniux CMS Web Services API

Retrieves all the Pages associated with given Category.

Namespace: IngeniuxCMService
Assembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 9.0.565.0 (9.0.565)
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

Reference