action bunq_list_all_content_for_user_monetary_account_event_statement { description: "Fetch the raw content of a payment statement export." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/event/{eventID}/statement/{statementID}/content" encoding: json input: { type: "object" properties: { eventID: { type: "integer" } "monetary-accountID": { type: "integer" } statementID: { type: "integer" } userID: { type: "integer" } } required: ["eventID", "monetary-accountID", "statementID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }