Skip to content

Commit 296a698

Browse files
[CDX-287] Docs - Change Items API Limit from 1k to 10k (#173)
1 parent 7942793 commit 296a698

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ items[1] = new ConstructorItem("10002");
3535
items[19] = new ConstructorItem("10003");
3636

3737
// Add or replace items in the Products section
38-
constructor.createOrReplaceItems(items, "Products"); // (limit of 1,000 items)
38+
constructor.createOrReplaceItems(items, "Products"); // (limit of 10,000 items)
3939
```
4040

4141
To update existing item(s), you will need to provide an array of `ConstructorItem`(s) and their relevant `Autocomplete Section`.

constructorio-client/src/main/java/io/constructor/client/ConstructorIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public boolean verify() throws ConstructorException {
226226
}
227227

228228
/**
229-
* Adds multiple items to your index whilst replacing existing ones (limit of 1,000 items)
229+
* Adds multiple items to your index whilst replacing existing ones (limit of 10,000 items)
230230
*
231231
* @param items the items you want to add or replace.
232232
* @param section the section of the index that you're adding the items to.

0 commit comments

Comments
 (0)