Sep 20, 2024
Add or delete dictionary entries
Adds or deletes multiple entries from your plurals, segmentation, or stop word dictionaries.
Usage
Required ACL:
editSettings
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import com.algolia.client.api.SearchClient
import com.algolia.client.extensions.*
val client = SearchClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")
var response = client.batchDictionaryEntries(
dictionaryName = DictionaryType.entries.first { it.value == "plurals" },
batchDictionaryEntriesParams = BatchDictionaryEntriesParams(
clearExistingDictionaryEntries = true,
requests = listOf(
BatchDictionaryEntriesRequest(
action = DictionaryAction.entries.first { it.value == "addEntry" },
body = DictionaryEntry(
objectID = "1",
language = SupportedLanguage.entries.first { it.value == "en" },
word = "fancy",
words = listOf("believe", "algolia"),
decomposition = listOf("trust", "algolia"),
state = DictionaryEntryState.entries.first { it.value == "enabled" },
),
),
),
),
)
Did you find this page helpful?