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

Create a Box web link with URL, parent folder, optional name and description.

  • Arguments:
    • ctx: Request context
    • url: URL of the web link
    • parent_folder_id: Parent folder ID
    • name: Name of the web link (optional)
    • description: Description (optional)

Get a Box web link by its ID.

  • Arguments:
    • ctx: Request context
    • web_link_id: ID of the web link

Update a Box web link's URL, location, name, and description.

  • Arguments:
    • ctx: Request context
    • web_link_id: ID of the web link
    • url: New URL
    • parent_folder_id: New parent folder ID
    • name: New name (optional)
    • description: New description (optional)

Delete a Box web link by its ID.

  • Arguments:
    • ctx: Request context
    • web_link_id: ID of the web link

Refer to src/tools/box_tools_web_link.py for implementation details.