Questions tagged [box-api]

Questions about the API provided by Box, Inc. for their online storage service.

The Box API lets you create applications and web sites that integrate with Box. By leveraging Box's RESTful API, you can add simple, yet secure file management, sharing, and collaboration to your app.

Please consult http://developers.box.com for full API documentation.

Box, Inc. was formerly known as Box.net.

1055 questions
0
votes
1 answer

Box API v2 uploading multiple files per single request is limited to 20

I'm using Box API v2.0. When I try to upload more than 20 files per single request, only first 20 files are uploaded on server. I receive such response: { "total_count": 20, "entries": [{ "type": "file", "id": "2365556604", ... …
z0rch
  • 55
  • 9
0
votes
1 answer

api 2.0 file upload response

The api 2.0 documentation says that upon a successful file upload, a full file object is returned, but the following is the json I get back on file uploads in Postman and python3: { "total_count":1, "entries":[ { …
0
votes
1 answer

Box API: Get_managed_users returning all users

Using the Box 1.0 REST API, I am trying to work with the functions in SOAP UI. The API doc for get_managed_users with user_id=12345 (internal id retrieved with get_user_id call correctly) is returning all the users. The docs say that would be the…
geoffc
  • 4,030
  • 7
  • 44
  • 51
0
votes
1 answer

Can I automate logging in to the box.net widget?

The box.net widget that allows uploading/downloading and viewing file works well. But I need to automate the login process so that others that I allow to my website don't need to know the username and password used for my account.
0
votes
1 answer

Object BoxUpdate is missing some infos

The BoxUpdate object doesn't give all the fields the API send when get_updates is requested. Especially the 'files' array (why is it an array btw ?). So in my updates section, I can tell who did what and when but not on which file.
greg3z
  • 601
  • 6
  • 18
0
votes
2 answers

Box API 2.0: Unable to Download

I'm testing out the new API, but having no luck downloading a test image file. The file exists, is accessible through the web UI, and is retrievable using the v1.0 API. I'm able to access the metadata ("https://api.box.com/2.0/files/{fileid}") using…
R Landry
  • 11
  • 2
0
votes
3 answers

how to send form data in a programmatic file upload in box api 2.0

Is the following a correct example of the form POST data in a file upload in the box api 2.0? The documentation says that the 'filename' form field is a string but when sending the post data in, say, python, you need to actually send the file…
-1
votes
0 answers

Can not see the Webhooks tab

I went to https://app.box.com/developers/console to create a test account and created a new app. Checkbox "Manage Webhooks" has been checked. It is supposed to have a Webhook tab added between Configuration and App Siagnostics. But I did not see…
Don
  • 1,532
  • 4
  • 24
  • 47
-1
votes
2 answers

How to get the BOX service accounts userid/mail to add it as a collaborator to a file?

I have created the service account and can see the details in admin console, I need to get the service accounts userid without going to admin console. Is there a api call for that?
ss301
  • 514
  • 9
  • 22
-1
votes
2 answers

Converting an nested xAPI JSON output into PHP Array

Array ( [0] => TinCan\Statement Object ( [id:protected] => 0a53e06c-64a7-4902-930e-993bb228cd49 [stored:protected] => 2018-02-24T04:21:22.456Z [authority:protected] => TinCan\Agent Object …
-1
votes
2 answers

Need help sorting data into separate worksheets

My process begins by opening "ExcelReport", https://app.box.com/s/2ieux0ws9c07k1d5x7rb, which is my source data. Then I open the file I've been working on "jmmac2", https://app.box.com/s/5sd1j11hjp9in7qc57os I hit the Import button to get the source…
Jason
  • 5
  • 1
  • 3
-1
votes
1 answer

Box SDK Api to Delete (all but current versions) of a file

I basically want to delete all versions except for the currently designated version of the file. For that I am using BoxClient.getFilesManager().getFileVersions(_fileId, reqObj); The first entry in the returned List object is…
curiouscoder
  • 81
  • 3
  • 9
-1
votes
2 answers

how do i programmatically create folder for application to upload content in it using BOX rest api

I want to support box cloud facility my blackberry 10 app,for this i'm using box rest api to implement this functionality. so using box rest oauth2.0 i able to get authorizedcode and then accessToken and RefreshToken but still not able to create a…
Ankur
  • 1,385
  • 11
  • 21
-1
votes
3 answers

In ios how to get logged in user info using v2 box sdk?

i integrated ios box v2 sdk with my app. I can do all operations other than getting the logged in user info like name, email and so on. Any one solved this issue?. Please let me know. There is a class called "BoxUser" but i do not know from where…
loganathan
  • 2,056
  • 2
  • 23
  • 34
-1
votes
1 answer

Creating folders and uploading a file without using a web browser

I am using the Java Api We have a web application wherein we want our file to be uploaded on an on_click even on some submit button. We don't want the browser to prompt us to enter the username and password to get the access token. Instead, we can…
Ashpak
  • 1
  • 1
1 2 3
70
71