action exlibrisgroup_post_almaws_v1_task_lists_printouts { label: "Act on Printouts" description: "This API performs an action on printouts: mark as printed or canceled. 10,000 records can be handled in one requests. Only printouts which were updated will be returned." provider: exlibrisgroup method: POST path: "/almaws/v1/task-lists/printouts" encoding: json input: { type: "object" properties: { letter: { type: "string" } op: { type: "string" } printer_id: { type: "string" } printout_id: { type: "string" } status: { type: "string" } } required: ["op"] additionalProperties: false } output: { type: "object" additionalProperties: true } }