BB_Jake
- Total activity 26
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 11
Comments
Recent activity by BB_Jake-
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...
-
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 ...
-
have you tried using the json library? import jsonx = client.file(file_id).get()print(json.dumps(x)) orprint(json.dumps(x.__dict__))
-
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...
-
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...
-
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...
-
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(...
-
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...
-
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...
-
an alternative is to use the events api : https://developer.box.com/reference#get-events-in-an-enterprise you can get all enterprise events and for each event, check the event type and what folde...