Click or drag to resize

TaxonomyTreeServicesGetTaxonomyLookup Method


Note: This API is now obsolete.

Searches for Categories with initial characters in their names

Namespace: IngeniuxCMService
Assembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntax
[ObsoleteAttribute("Replaced with TaxonomyController.QuickSearch")]
public XHRServiceResponseGeneric<string[][]> GetTaxonomyLookup(
	string search,
	string locale,
	string pageId = "",
	string pageSchemaName = ""
)

Parameters

search  String
Initial characters in Category names
locale  String
Environmental locale. Only name of Categories under these locales are searched.
pageId  String  (Optional)
Optional criteria - Id of the Page that Categories are associated with
pageSchemaName  String  (Optional)
Optional criteria - Friendly name of the Schema that allows this Category to be Root category in categorization process

Return Value

XHRServiceResponseGenericString

Array of Category Id, Name, and Path, which names matches the initial letters in search text, case-insensitive.

Example
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": [["Monera : Monera", "CategoryNodes\/67", "Monera"]]
}
See Also