box_docgen_template_list_tool
List all accessible Box Doc Gen templates for a user, with options for pagination using a marker and limit. Returns template metadata or an error message.
Instructions
List all Box Doc Gen templates accessible to the user.
Args: client (BoxClient): Authenticated Box client. marker (str, optional): Pagination marker. limit (int, optional): Max items per page.
Returns: dict[str, Any] | list[dict[str, Any]]: A list of template metadata or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
marker | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"marker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Marker"
}
},
"title": "box_docgen_template_list_toolArguments",
"type": "object"
}