Android™ Box: Update Folder

Back to Index

Renames a folder. This example renames the folder w/ id = 47885473705 to "Old Documents".

Documentation: https://developer.box.com/reference#update-information-about-a-folder

CURL Command

curl https://api.box.com/2.0/folders/47885473705 \
-H "Authorization: Bearer BOX_ACCESS_TOKEN" \
-d '{"name":"Old Documents"}' \
-X PUT

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/47885473705
    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;
        }

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("name","Old Documents");

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

    CkStringBuilder sbRequestBody = new CkStringBuilder();
    json.EmitSb(sbRequestBody);
    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = rest.FullRequestSb("PUT","/2.0/folders/47885473705",sbRequestBody,sbResponseBody);
    if (success != true) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

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

    String type;
    String id;
    String sequence_id;
    String etag;
    String name;
    String created_at;
    String 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;
    String content_created_at;
    String content_modified_at;
    String owned_byType;
    String owned_byId;
    String owned_byName;
    String owned_byLogin;
    boolean shared_link;
    boolean folder_upload_email;
    String parentType;
    String parentId;
    boolean parentSequence_id;
    boolean parentEtag;
    String parentName;
    String item_status;
    int item_collectionTotal_count;
    int item_collectionOffset;
    int item_collectionLimit;
    int i;
    int count_i;
    boolean sequence_id_bool;
    boolean etag_bool;
    String by;
    String direction;

    type = jsonResponse.stringOf("type");
    id = jsonResponse.stringOf("id");
    sequence_id = jsonResponse.stringOf("sequence_id");
    etag = jsonResponse.stringOf("etag");
    name = jsonResponse.stringOf("name");
    created_at = jsonResponse.stringOf("created_at");
    modified_at = jsonResponse.stringOf("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.stringOf("content_created_at");
    content_modified_at = jsonResponse.stringOf("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");
    parentType = jsonResponse.stringOf("parent.type");
    parentId = jsonResponse.stringOf("parent.id");
    parentSequence_id = jsonResponse.IsNullOf("parent.sequence_id");
    parentEtag = jsonResponse.IsNullOf("parent.etag");
    parentName = jsonResponse.stringOf("parent.name");
    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);
        type = jsonResponse.stringOf("path_collection.entries[i].type");
        id = jsonResponse.stringOf("path_collection.entries[i].id");
        sequence_id_bool = jsonResponse.IsNullOf("path_collection.entries[i].sequence_id");
        etag_bool = jsonResponse.IsNullOf("path_collection.entries[i].etag");
        name = jsonResponse.stringOf("path_collection.entries[i].name");
        i = i + 1;
        }

    i = 0;
    count_i = jsonResponse.SizeOfArray("item_collection.entries");
    while (i < count_i) {
        jsonResponse.put_I(i);
        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": "47885473705",
  "sequence_id": "1",
  "etag": "1",
  "name": "Old Documents",
  "created_at": "2018-03-16T06:54:57-07:00",
  "modified_at": "2018-03-17T08:36:09-07:00",
  "description": "",
  "size": 0,
  "path_collection": {
    "total_count": 1,
    "entries": [
      {
        "type": "folder",
        "id": "0",
        "sequence_id": null,
        "etag": null,
        "name": "All Files"
      }
    ]
  },
  "created_by": {
    "type": "user",
    "id": "2787704945",
    "name": "chilkat",
    "login": "AutomationUser_434741_3nmGYSS7o5@@boxdevedition.com"
  },
  "modified_by": {
    "type": "user",
    "id": "2787704945",
    "name": "chilkat",
    "login": "AutomationUser_434741_3nmGYSS7o5@@boxdevedition.com"
  },
  "trashed_at": null,
  "purged_at": null,
  "content_created_at": "2018-03-16T06:54:57-07:00",
  "content_modified_at": "2018-03-17T08:36:09-07:00",
  "owned_by": {
    "type": "user",
    "id": "2787704945",
    "name": "chilkat",
    "login": "AutomationUser_434741_3nmGYSS7o5@@boxdevedition.com"
  },
  "shared_link": null,
  "folder_upload_email": null,
  "parent": {
    "type": "folder",
    "id": "0",
    "sequence_id": null,
    "etag": null,
    "name": "All Files"
  },
  "item_status": "active",
  "item_collection": {
    "total_count": 0,
    "entries": [
    ],
    "offset": 0,
    "limit": 100,
    "order": [
      {
        "by": "type",
        "direction": "ASC"
      },
      {
        "by": "name",
        "direction": "ASC"
      }
    ]
  }
}