TaxonomyTreeServicesGetTaxonomyLookup Method
|
Searches for Categories with initial characters in their names
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[][]> GetTaxonomyLookup(
string search,
string locale,
string pageId = "",
string pageSchemaId = ""
)
Public Function GetTaxonomyLookup (
search As String,
locale As String,
Optional pageId As String = "",
Optional pageSchemaId As String = ""
) As XHRServiceResponseGeneric(Of String()())
public:
virtual XHRServiceResponseGeneric<array<array<String^>^>^>^ GetTaxonomyLookup(
String^ search,
String^ locale,
String^ pageId = L"",
String^ pageSchemaId = L""
) sealed
abstract GetTaxonomyLookup :
search : string *
locale : string *
?pageId : string *
?pageSchemaId : string
(* Defaults:
let _pageId = defaultArg pageId ""
let _pageSchemaId = defaultArg pageSchemaId ""
*)
-> XHRServiceResponseGeneric<string[][]>
override GetTaxonomyLookup :
search : string *
locale : string *
?pageId : string *
?pageSchemaId : string
(* Defaults:
let _pageId = defaultArg pageId ""
let _pageSchemaId = defaultArg pageSchemaId ""
*)
-> XHRServiceResponseGeneric<string[][]>
Parameters
- search
- Type: SystemString
Initial characters in Category names - locale
- Type: SystemString
Environmental locale. Only name of Categories under these locales are searched. - pageId (Optional)
- Type: SystemString
Optional criteria - Id of the Page that Categories are associated with - pageSchemaId (Optional)
- Type: SystemString
Optional criteria - Id of the Schema that allows this Category to be Root category in categorization process
Return Value
Type:
XHRServiceResponseGenericStringArray of Category Id, Name, and Path, which names matches the initial letters in search text, case-insensitive.
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [["Monera : Monera", "CategoryNodes\/67", "Monera"]]
}
See Also