BB_Jake
- Total activity 26
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 11
Activity overview
Latest activity by BB_Jake-
BB_Jake created a post,
Box Search Metadata with optional filters
Hello, We have created a metadata template which we will associate with documents that is supposed to aid with searching. The goal is to be able to enter keywords in the template fields so if any ...
-
BB_Jake commented,
what exactly are you looking for? If you retrieve a list of collaborations for a file or folder, you have access to all users/groups listed as collaborators which includes the user's name and log...
-
BB_Jake commented,
can you be a little more specific with your question?Using https://developer.box.com/reference#view-a-folders-collaborations you can get a list of collaborations for a folder. Each collaboration ...
-
BB_Jake commented,
have you tried using the json library? import jsonx = client.file(file_id).get()print(json.dumps(x)) orprint(json.dumps(x.__dict__))
-
BB_Jake commented,
Webhooks may work for you - https://developer.box.com/docs/work-with-webhooksYou can define a webhook for that specific file and monitor whichever events you need to (sounds like you want to list...
-
BB_Jake commented,
I'm not sure if there's 1 call that can get you this info for every single folder and sub folder. 1 option could be :Using : https://developer.box.com/reference#view-a-folders-collaborations to g...
-
BB_Jake commented,
why not try the basic example from the documentation : https://developer.box.com/reference#download-a-file curl -L https://api.box.com/2.0/files/FILE_ID/content -H "Authorization: Bearer ACCESS_T...
-
BB_Jake commented,
https://github.com/box/box-python-sdk/blob/master/docs/usage/collaboration.md#add-a-collaboration user = client.user(user_id='11111') collaboration = client.folder(folder_id='22222').collaborate(...
-
BB_Jake commented,
The documentation has been recently updated and organised on GitHub, please take a read and you should be able to find most things here : https://github.com/box/box-python-sdk/tree/master/docs/us...
-
BB_Jake commented,
any account that is a collaborator on the folders will be able to see the files being uploaded so make sure the account you are using with the python sdk is a collaborator.The easiest way is to c...