Sep 20, 2024
Add or replace a record
If a record with the specified object ID exists, the existing record is replaced. Otherwise, a new record is added to the index.
To update some attributes of an existing record, use the partial
operation instead.
To add, update, or replace multiple records, use the batch
operation.
Usage
Required ACL:
addObject
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.addOrUpdateObject(
indexName = "ALGOLIA_INDEX_NAME",
objectID = "uniqueID",
body = buildJsonObject {
put(
"key",
JsonPrimitive("value"),
)
},
)
Did you find this page helpful?