box_docgen_template_get_by_id_tool
Retrieve metadata for a specific Box Doc Gen template by its ID using the MCP Server Box API. Input the template ID to access its details or error information.
Instructions
Retrieve details of a specific Box Doc Gen template.
Args: client (BoxClient): Authenticated Box client. template_id (str): ID of the template.
Returns: dict[str, Any]: Metadata of the template or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
template_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"template_id": {
"title": "Template Id",
"type": "string"
}
},
"required": [
"template_id"
],
"title": "box_docgen_template_get_by_id_toolArguments",
"type": "object"
}