box_file_thumbnail_download_tool
Download thumbnail images from Box files with customizable dimensions and formats. Specify file ID to retrieve visual previews for documents or media.
Instructions
Download the actual thumbnail image of a file. Args: file_id (str): The ID of the file. extension (str, optional): Image format ('png' or 'jpg', defaults to 'png'). min_height (int, optional): Minimum height in pixels (32-320). min_width (int, optional): Minimum width in pixels (32-320). max_height (int, optional): Maximum height in pixels (32-320). max_width (int, optional): Maximum width in pixels (32-320). Returns: dict[str, Any]: Dictionary with thumbnail image content in base64 or error message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | Yes | ||
| extension | No | ||
| min_height | No | ||
| min_width | No | ||
| max_height | No | ||
| max_width | No |