# Box Tools Web Link
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 context
- `url`: URL of the web link
- `parent_folder_id`: Parent folder ID
- `name`: 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 context
- `web_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 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)
### 4. `box_web_link_delete_by_id_tool`
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.