Box Tools Web Link
November 13, 2025 ยท View on GitHub
This document describes the tools available in the box_tools_web_link module for web link creation and management in Box.
Available Tools
1. box_web_link_create_tool
Create a Box web link with URL, parent folder, optional name and description.
- Arguments:
ctx: Request contexturl: URL of the web linkparent_folder_id: Parent folder IDname: Name of the web link (optional)description: Description (optional)
2. box_web_link_get_by_id_tool
Get a Box web link by its ID.
- Arguments:
ctx: Request contextweb_link_id: ID of the web link
3. box_web_link_update_by_id_tool
Update a Box web link's URL, location, name, and description.
- Arguments:
ctx: Request contextweb_link_id: ID of the web linkurl: New URLparent_folder_id: New parent folder IDname: New name (optional)description: New description (optional)
4. box_web_link_delete_by_id_tool
Delete a Box web link by its ID.
- Arguments:
ctx: Request contextweb_link_id: ID of the web link
Refer to src/tools/box_tools_web_link.py for implementation details.