I am calling https://api.box.com/2.0/folders/0/items
and the response I get back tells me there should be 51 items, but there are only 49 items in the array that gets returned. Are there some hidden files/folders that are not returned by the API?
{
"total_count": 51,
"entries": ARRAY OF 49 ITEMS HERE
"offset": 0,
"limit": 100,
"order": [
{
"by": "type",
"direction": "ASC"
},
{
"by": "name",
"direction": "ASC"
}
]
}