Box

Box

Cloud storage management with Box

With emma's Box integration, you can manage files and folders, create shared links, and search content. Automate your cloud storage workflow with powerful file management tools.

Features

Box_Operator supports the following 8 tools:

CategoryTools
Files & Folders8
Tool NameDescription
box_list_folderList items in a folder
box_get_file_infoGet file details
box_searchSearch files/folders in Box
box_create_folderCreate a new folder
box_delete_itemDelete a file or folder
box_create_shared_linkCreate a shared link
box_download_fileGet file download URL
box_get_user_infoGet current user info

Main Parameters

ParameterDescription
folder_idFolder ID
file_idFile ID
querySearch query
access_levelAccess level for shared link

Prerequisites

  • emma account
  • Box account
  • Box access token

Setup

1. Install the package

npm install @duzzle/box-integration

2. Initialize

import { DuzzleBox } from '@duzzle/box-integration';

const box = new DuzzleBox({
  apiKey: process.env.DUZZLE_API_KEY,
  boxToken: process.env.BOX_ACCESS_TOKEN
});

3. List Folder

// List folder contents
const items = await box.listFolder({
  folder_id: '0' // Root folder
});

console.log('Items:', items.entries);

© 2026 Duzzle Inc. All rights reserved.