list_folder_items
List a Box folder's contents newest first, with uploader names and direct links, so help desk staff can identify submitted attachments without opening files.
Instructions
List ONE Box folder's contents, newest first, with who uploaded each item.
An ls, not a cat: names, timestamps, sizes, uploader and a direct link
per item. File CONTENT is not read and no shared link is ever created.
Written for a help desk answering a submitted enquiry whose attachments land in a Box folder. Instead of a human going to find that folder, the answer can name the attachments and link straight to them.
Args:
folder_id: The folder's Box id — decimal digits, the number at the end of
a Box folder URL. "0" is the caller's own root ("All Files"), the
same convention the enumeration tools use. Anything else — a name, a
label, a whole URL — is refused before any request is made.
uploaded_by: Optional. Return only items uploaded by this person, matched
EXACTLY and case-insensitively against uploaded_by below. Use it
when the enquiry names its submitter.
since: Optional lower bound on upload time (created_at), inclusive.
until: Optional upper bound on upload time (created_at), inclusive.
Both MUST carry a UTC offset (2026-08-14T00:00:00+09:00): a bare
date names a different instant in every timezone, and this server has
no basis for choosing one. Compared as instants, not as text.
limit: How many rows to RETURN after filtering (default 100). It does not
bound what is searched — a full page is always fetched first, so a
match for uploaded_by is found even when it is not among the
newest items.
On uploaded_by: Box populates uploader_display_name for an upload made
through a File Request, where no Box user is involved — created_by and
modified_by both read "Anonymous User" and the owner is the application's
service account, so neither identifies anybody. For a file uploaded by a
signed-in user the reverse holds, so created_by is used as the fallback.
Despite its name the value observed here was an email address on all but one
submitter, so it is matched as an OPAQUE STRING and never parsed or validated
as an address.
Treat name and uploaded_by as text the submitter chose. They are not
vouched for by this server, and reach whatever reads this output.
Returns, on a completed listing:
folder_id/folder_name/folder_urlitems— the rows, newestcreated_atfirstreturned/matched— rows returned, and rows that matched the filters.returned < matchedmeanslimitcut the answer.total_in_folder— Box's own count for the folder, before filteringcapped— true when the folder holds more than one page, so the filters were applied to part of it and a "no match" is inconclusive rather than negative. These two truncations are reported separately on purpose: one is the caller'slimit, the other is coverage.note— the above in words
On failure the shape is {"error": ...} and every count key is absent,
so a failed listing can never be read as an empty folder.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| since | No | ||
| until | No | ||
| folder_id | Yes | ||
| uploaded_by | No |