TaxonomyTreeServicesUpdateAssociationsToPage Method |
Namespace: IngeniuxCMService
public XHRServiceResponseGeneric<PageCategorizationSetInfo> UpdateAssociationsToPage( UpdatePageCategorizationInput data )
Page id, and the adds and removes of categories for the page
Sample JSON input
{
"add": [
"CategoryNodes/101",
"CategoryNodes/97",
"CategoryNodes/98"
],
"remove": [
"CategoryNodes/107"
],
"pageId": "x3"
}Information of the associated category ids
Sample JSON return
{
"ContentFreezeEndTime": "",
"ContentFreezeStartTime": "",
"code": 0,
"error": null,
"message": {
"associatedCategories": [
"CategoryNodes\/101",
"CategoryNodes\/97",
"CategoryNodes\/98"
]
}
}