TaxonomyTreeServicesUpdateAssociationsToPage Method
|
Updates categorization to specific page
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<PageCategorizationSetInfo> UpdateAssociationsToPage(
UpdatePageCategorizationInput data
)
Public Function UpdateAssociationsToPage (
data As UpdatePageCategorizationInput
) As XHRServiceResponseGeneric(Of PageCategorizationSetInfo)
public:
virtual XHRServiceResponseGeneric<PageCategorizationSetInfo^>^ UpdateAssociationsToPage(
UpdatePageCategorizationInput^ data
) sealed
abstract UpdateAssociationsToPage :
data : UpdatePageCategorizationInput -> XHRServiceResponseGeneric<PageCategorizationSetInfo>
override UpdateAssociationsToPage :
data : UpdatePageCategorizationInput -> XHRServiceResponseGeneric<PageCategorizationSetInfo>
Parameters
- data
- Type: UpdatePageCategorizationInput
Page id, and the adds and removes of categories for the page
Examples Sample JSON input
{
"add": [
"CategoryNodes/101",
"CategoryNodes/97",
"CategoryNodes/98"
],
"remove": [
"CategoryNodes/107"
],
"pageId": "x3"
}
Return Value
Type:
XHRServiceResponseGenericPageCategorizationSetInfoInformation of the associated category ids
Examples Sample JSON return
{
"ContentFreezeEndTime": "",
"ContentFreezeStartTime": "",
"code": 0,
"error": null,
"message": {
"associatedCategories": [
"CategoryNodes\/101",
"CategoryNodes\/97",
"CategoryNodes\/98"
]
}
}
See Also