You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BoxApiSearchsearchApi = newBoxApiSearch(session);
BoxIteratorItemssearchResults = searchApi.getSearchRequest("search string")
.setOffset(0) // default is 0
.setLimit(100) // default is 30, max is 200// Optional: Specify advanced search parameters. See BoxRequestsSearch.Search for the full list of parameters supported.
.limitAncestorFolderIds(newString[]{"folderId1", "folderId2"}) // only items in these folders will be returned.
.limitFileExtensions(newString[]{"jpg", "png"}) // only files with these extensions will be returned.
.send();