Unicode C++ Box: Get Folder Items

Back to Index

Gets all of the files, folders, or web links contained within a folder.

Documentation: https://developer.box.com/reference#get-a-folders-items

CURL Command

curl https://api.box.com/2.0/folders/BOX_FOLDER_ID/items?limit=2&offset=0 \
-H "Authorization: Bearer BOX_ACCESS_TOKEN"

Unicode C++ Example

#include <CkRestW.h>
#include <CkStringBuilderW.h>
#include <CkJsonObjectW.h>

void ChilkatSample(void)
    {
    CkRestW rest;
    bool success;

    //  URL: https://api.box.com/2.0/folders/BOX_FOLDER_ID/items?limit=2&offset=0
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    success = rest.Connect(L"api.box.com",port,bTls,bAutoReconnect);
    if (success != true) {
        wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

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

    CkStringBuilderW sbResponseBody;
    success = rest.FullRequestNoBodySb(L"GET",L"/2.0/folders/BOX_FOLDER_ID/items?limit=2&offset=0",sbResponseBody);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    CkJsonObjectW jsonResponse;
    jsonResponse.LoadSb(sbResponseBody);

    int total_count;
    int offset;
    int limit;
    int i;
    int count_i;
    const wchar_t *type = 0;
    const wchar_t *id = 0;
    const wchar_t *file_versionType = 0;
    const wchar_t *file_versionId = 0;
    const wchar_t *file_versionSha1 = 0;
    const wchar_t *sequence_id = 0;
    const wchar_t *etag = 0;
    const wchar_t *sha1 = 0;
    const wchar_t *name = 0;
    const wchar_t *by = 0;
    const wchar_t *direction = 0;

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

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

Sample JSON Response Body

{
  "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": 2,
  "order": [
    {
      "by": "type",
      "direction": "ASC"
    },
    {
      "by": "name",
      "direction": "ASC"
    }
  ]
}