Developers

GetExtraData

getExtraData

Use the following method for functions affecting data related to the Inbenta application.

Usage

client.getExtraData(dataId: Integer, name: String);

DataId

Extra info group name identifier from the Search instance's knowledge base (no error will be returned if non-existing)

Name

Name of extra info element from the Search instance's knowledge base.

Response data format

The response looks like this:

{
   "results":[
      {
         "name":"projectLanguages",
         "group_name":"example",
         "value":[
            {
               "languages":[
                  "en",
                  "es",
                  "it"
               ]
            }
         ]
      }
   ]
}
Example
client.getExtraData('TestGroup', 'TestValue');