I am trying to view content located inside a folder where I am a co-owner. I am authenticating via JWT and using "as-user" header. Calling the list items endpoint:
https://developer.box.com/reference/get-folders-id-items/
The endpoint itself is returning the one folder I created, but not the one I am a co-owner of. The item count weirdly shows "2", but the actual folder is omitted:
stdClass Object
(
[total_count] => 2
[entries] => Array
(
[0] => stdClass Object
(
[type] => folder
[id] => 123703336333
[sequence_id] => 1
[etag] => 1
[name] => Testing
)
)
[offset] => 0
[limit] => 100
[order] => Array
(
[0] => stdClass Object
(
[by] => type
[direction] => ASC
)
[1] => stdClass Object
(
[by] => name
[direction] => ASC
)
)
)
Does anyone have any experience in dealing with this?
Thanks!