Android™ Box: Get Root Folder Info

Back to Index

Gets the folder info for the root folder of a Box.com account. The root folder of a box.com account always has an id = "0".

Documentation: https://developer.box.com/reference#get-folder-info

CURL Command

curl https://api.box.com/2.0/folders/0 \
-H "Authorization: Bearer BOX_ACCESS_TOKEN" \

Android™ Example

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    CkRest rest = new CkRest();
    boolean success;

    //  URL: https://api.box.com/2.0/folders/0
    boolean bTls = true;
    int port = 443;
    boolean bAutoReconnect = true;
    success = rest.Connect("api.box.com",port,bTls,bAutoReconnect);
    if (success != true) {
        Log.i(TAG, "ConnectFailReason: " + String.valueOf(rest.get_ConnectFailReason()));
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    rest.AddHeader("Authorization","Bearer BOX_ACCESS_TOKEN");

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = rest.FullRequestNoBodySb("GET","/2.0/folders/0",sbResponseBody);
    if (success != true) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    CkJsonObject jsonResponse = new CkJsonObject();
    jsonResponse.LoadSb(sbResponseBody);

    String type;
    String id;
    boolean sequence_id;
    boolean etag;
    String name;
    boolean created_at;
    boolean modified_at;
    String description;
    int size;
    int path_collectionTotal_count;
    String created_byType;
    String created_byId;
    String created_byName;
    String created_byLogin;
    String modified_byType;
    String modified_byId;
    String modified_byName;
    String modified_byLogin;
    boolean trashed_at;
    boolean purged_at;
    boolean content_created_at;
    boolean content_modified_at;
    String owned_byType;
    String owned_byId;
    String owned_byName;
    String owned_byLogin;
    boolean shared_link;
    boolean folder_upload_email;
    boolean parent;
    String item_status;
    int item_collectionTotal_count;
    int item_collectionOffset;
    int item_collectionLimit;
    int i;
    int count_i;
    String file_versionType;
    String file_versionId;
    String file_versionSha1;
    String sequence_id_str;
    String etag_str;
    String sha1;
    String by;
    String direction;

    type = jsonResponse.stringOf("type");
    id = jsonResponse.stringOf("id");
    sequence_id = jsonResponse.IsNullOf("sequence_id");
    etag = jsonResponse.IsNullOf("etag");
    name = jsonResponse.stringOf("name");
    created_at = jsonResponse.IsNullOf("created_at");
    modified_at = jsonResponse.IsNullOf("modified_at");
    description = jsonResponse.stringOf("description");
    size = jsonResponse.IntOf("size");
    path_collectionTotal_count = jsonResponse.IntOf("path_collection.total_count");
    created_byType = jsonResponse.stringOf("created_by.type");
    created_byId = jsonResponse.stringOf("created_by.id");
    created_byName = jsonResponse.stringOf("created_by.name");
    created_byLogin = jsonResponse.stringOf("created_by.login");
    modified_byType = jsonResponse.stringOf("modified_by.type");
    modified_byId = jsonResponse.stringOf("modified_by.id");
    modified_byName = jsonResponse.stringOf("modified_by.name");
    modified_byLogin = jsonResponse.stringOf("modified_by.login");
    trashed_at = jsonResponse.IsNullOf("trashed_at");
    purged_at = jsonResponse.IsNullOf("purged_at");
    content_created_at = jsonResponse.IsNullOf("content_created_at");
    content_modified_at = jsonResponse.IsNullOf("content_modified_at");
    owned_byType = jsonResponse.stringOf("owned_by.type");
    owned_byId = jsonResponse.stringOf("owned_by.id");
    owned_byName = jsonResponse.stringOf("owned_by.name");
    owned_byLogin = jsonResponse.stringOf("owned_by.login");
    shared_link = jsonResponse.IsNullOf("shared_link");
    folder_upload_email = jsonResponse.IsNullOf("folder_upload_email");
    parent = jsonResponse.IsNullOf("parent");
    item_status = jsonResponse.stringOf("item_status");
    item_collectionTotal_count = jsonResponse.IntOf("item_collection.total_count");
    item_collectionOffset = jsonResponse.IntOf("item_collection.offset");
    item_collectionLimit = jsonResponse.IntOf("item_collection.limit");
    i = 0;
    count_i = jsonResponse.SizeOfArray("path_collection.entries");
    while (i < count_i) {
        jsonResponse.put_I(i);
        i = i + 1;
        }

    i = 0;
    count_i = jsonResponse.SizeOfArray("item_collection.entries");
    while (i < count_i) {
        jsonResponse.put_I(i);
        type = jsonResponse.stringOf("item_collection.entries[i].type");
        id = jsonResponse.stringOf("item_collection.entries[i].id");
        file_versionType = jsonResponse.stringOf("item_collection.entries[i].file_version.type");
        file_versionId = jsonResponse.stringOf("item_collection.entries[i].file_version.id");
        file_versionSha1 = jsonResponse.stringOf("item_collection.entries[i].file_version.sha1");
        sequence_id_str = jsonResponse.stringOf("item_collection.entries[i].sequence_id");
        etag_str = jsonResponse.stringOf("item_collection.entries[i].etag");
        sha1 = jsonResponse.stringOf("item_collection.entries[i].sha1");
        name = jsonResponse.stringOf("item_collection.entries[i].name");
        i = i + 1;
        }

    i = 0;
    count_i = jsonResponse.SizeOfArray("item_collection.order");
    while (i < count_i) {
        jsonResponse.put_I(i);
        by = jsonResponse.stringOf("item_collection.order[i].by");
        direction = jsonResponse.stringOf("item_collection.order[i].direction");
        i = i + 1;
        }


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Sample JSON Response Body

{
  "type": "folder",
  "id": "0",
  "sequence_id": null,
  "etag": null,
  "name": "All Files",
  "created_at": null,
  "modified_at": null,
  "description": "",
  "size": 826408,
  "path_collection": {
    "total_count": 0,
    "entries": [
    ]
  },
  "created_by": {
    "type": "user",
    "id": "",
    "name": "",
    "login": ""
  },
  "modified_by": {
    "type": "user",
    "id": "2787704945",
    "name": "chilkat",
    "login": "AutomationUser_434741_3nmGYSS7o5@@boxdevedition.com"
  },
  "trashed_at": null,
  "purged_at": null,
  "content_created_at": null,
  "content_modified_at": null,
  "owned_by": {
    "type": "user",
    "id": "2787704945",
    "name": "chilkat",
    "login": "AutomationUser_434741_3nmGYSS7o5@@boxdevedition.com"
  },
  "shared_link": null,
  "folder_upload_email": null,
  "parent": null,
  "item_status": "active",
  "item_collection": {
    "total_count": 2,
    "entries": [
      {
        "type": "file",
        "id": "246181882790",
        "file_version": {
          "type": "file_version",
          "id": "259636211878",
          "sha1": "c9d2492fb97f88a9b4d1e35f32a3410e95853f18"
        },
        "sequence_id": "0",
        "etag": "0",
        "sha1": "c9d2492fb97f88a9b4d1e35f32a3410e95853f18",
        "name": "hedgehogs.jpg"
      },
      {
        "type": "file",
        "id": "246167973161",
        "file_version": {
          "type": "file_version",
          "id": "259621592361",
          "sha1": "df7be9dc4f467187783aca68c7ce98e4df2172d0"
        },
        "sequence_id": "0",
        "etag": "0",
        "sha1": "df7be9dc4f467187783aca68c7ce98e4df2172d0",
        "name": "penguins.jpg"
      }
    ],
    "offset": 0,
    "limit": 100,
    "order": [
      {
        "by": "type",
        "direction": "ASC"
      },
      {
        "by": "name",
        "direction": "ASC"
      }
    ]
  }
}