action bunq_list_all_pdf_content_for_user_invoice { description: "Get a PDF export of an invoice." provider: bunq method: GET path: "/user/{userID}/invoice/{invoiceID}/pdf-content" encoding: json input: { type: "object" properties: { invoiceID: { type: "integer" } userID: { type: "integer" } } required: ["invoiceID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }