box_docgen_list_jobs_by_batch_tool
Enables users to list document generation jobs within a specific batch on the MCP Server Box. Specify the batch ID, pagination marker, and limit to retrieve job details efficiently.
Instructions
List Doc Gen jobs in a specific batch.
Args: client (BoxClient): Authenticated Box client. batch_id (str): ID of the Doc Gen batch. marker (str, optional): Pagination marker. limit (int, optional): Maximum number of items to return.
Returns: list[dict[str, Any]]: A list of Doc Gen jobs in the batch.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
batch_id | Yes | ||
limit | No | ||
marker | No |
Input Schema (JSON Schema)
{
"properties": {
"batch_id": {
"title": "Batch Id",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"marker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Marker"
}
},
"required": [
"batch_id"
],
"title": "box_docgen_list_jobs_by_batch_toolArguments",
"type": "object"
}