box_docgen_template_list_jobs_tool
Retrieve a list of document generation jobs associated with a specific template using the Box API. Supports pagination with optional marker and limit parameters for efficient job retrieval.
Instructions
List Doc Gen jobs that used a specific template.
Args: client (BoxClient): Authenticated Box client. template_id (str): ID of the template. marker (str, optional): Pagination marker. limit (int, optional): Max items per page.
Returns: DocGenJobsV2025R0: A page of Doc Gen jobs for the template.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
marker | No | ||
template_id | Yes |
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"
},
"template_id": {
"title": "Template Id",
"type": "string"
}
},
"required": [
"template_id"
],
"title": "box_docgen_template_list_jobs_toolArguments",
"type": "object"
}