box_upload_file_from_content_tool
Upload text or binary content directly to Box as a file by specifying file name and folder ID. Supports base64 encoding for secure data transfer.
Instructions
Upload content as a file to Box using the toolkit.
Args: content (str | bytes): The content to upload. Can be text or binary data. file_name (str): The name to give the file in Box. folder_id (str): The ID of the destination folder. Defaults to root ("0"). is_base64 (bool): Whether the content is base64 encoded. Defaults to False.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
file_name | Yes | ||
folder_id | No | 0 | |
is_base64 | No |