TaxonomyTreeServicesGetCategoryAssociations Method
|
Retrieves all the Pages associated with given Category.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[][]> GetCategoryAssociations(
CategoryAssociationManipulationInput data
)
Public Function GetCategoryAssociations (
data As CategoryAssociationManipulationInput
) As XHRServiceResponseGeneric(Of String()())
public:
virtual XHRServiceResponseGeneric<array<array<String^>^>^>^ GetCategoryAssociations(
CategoryAssociationManipulationInput^ data
) sealed
abstract GetCategoryAssociations :
data : CategoryAssociationManipulationInput -> XHRServiceResponseGeneric<string[][]>
override GetCategoryAssociations :
data : CategoryAssociationManipulationInput -> XHRServiceResponseGeneric<string[][]>
Parameters
- data
- Type: CategoryAssociationManipulationInput
Object containing the Id of the Category to retrieve associations for
Examples
Sample JSON input
{
"data": {
"categoryId": "CategoryNodes/2"
}
}
Return Value
Type:
XHRServiceResponseGenericStringArray of associated Pages' Id and Name
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [["x9", "Terms"], ["x11", "About Us"]]
}
See Also