action bunq_list_all_content_for_user_monetary_account_customer_statement { description: "Fetch the raw content of a statement export. The returned file format could be MT940, CSV or PDF depending on the statement format specified during the statement creation. The doc won't display the response of a request to get the content of a statement export." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/customer-statement/{customer-statementID}/content" encoding: json input: { type: "object" properties: { "customer-statementID": { type: "integer" } "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["customer-statementID", "monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }