box_docgen_template_create_tool
Mark a Box file as a document generation template using its file ID, enabling automated document creation workflows through the MCP Server Box.
Instructions
Mark a file as a Box Doc Gen template.
Args: client (BoxClient): Authenticated Box client. file_id (str): ID of the file to mark as template.
Returns: dict[str, Any]: Metadata of the created template.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"title": "File Id",
"type": "string"
}
},
"required": [
"file_id"
],
"title": "box_docgen_template_create_toolArguments",
"type": "object"
}