box_web_link_update_by_id_tool
Modify a web link in Box by changing its URL, parent folder, name, or description using the link's unique identifier.
Instructions
Update a Box web link by its ID. Args: ctx (Context): The context object containing the request and lifespan context. web_link_id (str): The ID of the web link to update. url (str): The new URL of the web link. parent_folder_id (str): The ID of the parent folder for the web link. name (str, optional): The new name of the web link. Defaults to None. description (str, optional): The new description of the web link. Defaults to None.
Returns: dict: The response from the Box API after updating the web link.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| web_link_id | Yes | ||
| url | Yes | ||
| parent_folder_id | Yes | ||
| name | No | ||
| description | No |