Use the following method for functions affecting data related to the Inbenta application.
client.getExtraData(dataId: Integer, name: String);
Extra info group name identifier from the Search instance's knowledge base (no error will be returned if non-existing)
Name of extra info element from the Search instance's knowledge base.
The response looks like this:
{
"results":[
{
"name":"projectLanguages",
"group_name":"example",
"value":[
{
"languages":[
"en",
"es",
"it"
]
}
]
}
]
}
client.getExtraData('TestGroup', 'TestValue');