mwiller
- Total activity 375
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 156
Activity overview
Latest activity by mwiller-
mwiller commented,
You're right, it does appear that this is not currently supported in the API. I was able to reproduce the issue, but I'm not aware of any workarounds, so I filed a ticket internally with the Box...
-
mwiller commented,
Ah, I think I see one issue — the field in the API docs is called has_collaborations, not has_collaborators. If you use that, does it work correctly?
-
mwiller commented,
This may be because the GET https://api.box.com/2.0/users endpoint is only accessible by enterprise administrator accounts; that endpoint lists all the users in a given enterprise. A better choi...
-
mwiller commented,
Ah, I think I see what the issue is. You're using the box folders:get command, which is made for retrieving information about a single folder. The folder object includes an item_collection fiel...
-
mwiller commented,
I'm not sure I understand exactly what problem you're seeing; would you mind providing a bit more information so we can try and troubleshoot? First, exactly what command are you running with th...
-
mwiller commented,
The has_collaborators field on File and Folder objects is not returned from the API by default; you'll need to specifically request it. You can do this by passing a list of field names you want ...
-
mwiller commented,
This is actually an API limitation; it is not currently possible to revoke downscoped tokens. This is something that the Box Platform team is actively working on, though, and we expect it will b...
-
mwiller commented,
By default, the Search API uses some fuzzy matching to find results; if you're looking for a more exact match, you can put double-quotes around your search term: BoxClientCompany.SearchManager.Qu...
-
mwiller commented,
The user_type=external parameter does not allow listing all external users; it must be combined with the filter_term parameter to look up an external user by their login email address. Here's th...
-
mwiller commented,
Unfortunately, it is not possible to search for ALL files based on their update date; a search query must be provided, per the API documentation. One way to get all files in a specific folder up...