https://api.box.com/2.0/folders/0/items?limit=1&offset=28 returns nothing:
{"total_count": 51,
"entries": [],
"offset": 28,
"limit": 1,
"order": [
{"by": "type",
"direction": "ASC"},
{"by": "name",
"direction": "ASC"}]}
however, if I set offset to 29,
https://api.box.com/2.0/folders/0/items?limit=1&offset=29, then I get back
{
"total_count": 51,
"entries": [{"type": "folder",
"id": "removed for privacy6",
"sequence_id": "0",
"etag": "0",
"name": "Lucky2016"}],
"offset": 29,
"limit": 1,
"order": [{
"by": "type",
"direction": "ASC"},
{"by": "name",
"direction": "ASC"}]}
This makes no sense. What is happening at offset 28?