action bunq_list_all_content_for_user_monetary_account_attachment { description: "Get the raw content of a specific attachment." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/attachment/{attachmentID}/content" encoding: json input: { type: "object" properties: { attachmentID: { type: "integer" } "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["attachmentID", "monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }