BB_Jake
- Activité totale 26
- Dernière activité
- Membre depuis
- Abonné à 0 utilisateur
- Abonnés 0 utilisateur
- Votes 0
- Abonnements 11
Aperçu des activités
Dernière activité effectuée par BB_Jake-
BB_Jake a créé une publication,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a ajouté un commentaire,
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...