File storage and document management with Box integration for CrewAI.
BOX_SAVE_FILE
fileAttributes
(object, required): Attributes - File metadata including name, parent folder, and timestamps.
file
(string, required): File URL - Files must be smaller than 50MB in size. (example: “https://picsum.photos/200/300”).BOX_SAVE_FILE_FROM_OBJECT
file
(string, required): File - Accepts a File Object containing file data. Files must be smaller than 50MB in size.fileName
(string, required): File Name (example: “qwerty.png”).folder
(string, optional): Folder - Use Connect Portal Workflow Settings to allow users to select the File’s Folder destination. Defaults to the user’s root folder if left blank.BOX_GET_FILE_BY_ID
fileId
(string, required): File ID - The unique identifier that represents a file. (example: “12345”).BOX_LIST_FILES
folderId
(string, required): Folder ID - The unique identifier that represents a folder. (example: “0”).filterFormula
(object, optional): A filter in disjunctive normal form - OR of AND groups of single conditions.
BOX_CREATE_FOLDER
folderName
(string, required): Name - The name for the new folder. (example: “New Folder”).folderParent
(object, required): Parent Folder - The parent folder where the new folder will be created.
BOX_MOVE_FOLDER
folderId
(string, required): Folder ID - The unique identifier that represents a folder. (example: “0”).folderName
(string, required): Name - The name for the folder. (example: “New Folder”).folderParent
(object, required): Parent Folder - The new parent folder destination.
BOX_GET_FOLDER_BY_ID
folderId
(string, required): Folder ID - The unique identifier that represents a folder. (example: “0”).BOX_SEARCH_FOLDERS
folderId
(string, required): Folder ID - The folder to search within.filterFormula
(object, optional): A filter in disjunctive normal form - OR of AND groups of single conditions.
BOX_DELETE_FOLDER
folderId
(string, required): Folder ID - The unique identifier that represents a folder. (example: “0”).recursive
(boolean, optional): Recursive - Delete a folder that is not empty by recursively deleting the folder and all of its content.