cancel_print_job
Cancel specific print jobs by ID or stop all pending print jobs for a printer. Manage print queues to remove unwanted documents before they print.
Instructions
Cancel a specific print job by job ID or cancel all jobs for a printer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cancel_all | No | Cancel all jobs for the specified printer | |
| job_id | No | Job ID to cancel (get from get_print_queue) | |
| printer | No | Printer name (required if canceling all jobs) |
Input Schema (JSON Schema)
{
"properties": {
"cancel_all": {
"default": false,
"description": "Cancel all jobs for the specified printer",
"type": "boolean"
},
"job_id": {
"description": "Job ID to cancel (get from get_print_queue)",
"type": "string"
},
"printer": {
"description": "Printer name (required if canceling all jobs)",
"type": "string"
}
},
"type": "object"
}