action exlibrisgroup_get_almaws_v1_task_lists_printouts { label: "Retrieve Printouts" description: "This API returns a list of Printouts." provider: exlibrisgroup method: GET path: "/almaws/v1/task-lists/printouts" encoding: json input: { type: "object" properties: { letter: { type: "string" } limit: { type: "integer" } offset: { type: "integer" } printer_id: { type: "string" } printout_id: { type: "string" } status: { type: "string" } } additionalProperties: false } output: { type: "object" description: "A list of printouts." properties: { printout: { type: "array" description: "printout object." items: { type: "object" description: "Printout Object." properties: { date: { type: "string" format: "date-time" description: "The time that the letter has been send to the Printout Queue." } id: { type: "string" description: "The printout id." } letter: { type: "string" description: "Letter Html body." } link: { type: "string" } printer: { type: "object" description: "The printer." properties: { desc: { type: "string" } value: { type: "string" } } } printout: { type: "string" description: "The printout name." } size: { type: "string" description: "The size of the letter." } source: { type: "string" description: "The user who printed the letter." } status: { type: "object" description: "Status of the printout (Pending/Printed/Canceled)." properties: { desc: { type: "string" } value: { type: "string" } } } } } } total_record_count: { type: "integer" format: "int32" description: "The total number of printouts." } } } }