action bunq_list_all_insights_for_user { description: "Used to get insights about transactions between given time range." provider: bunq method: GET path: "/user/{userID}/insights" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { amount_total: { type: "object" properties: { currency: { type: "string" description: "The currency of the amount. It is an ISO 4217 formatted currency code." } value: { type: "string" description: "The amount formatted to two decimal places." } } } category: { type: "string" description: "The category." } category_translated: { type: "string" description: "The translated category." } number_of_transactions: { type: "integer" description: "The number of the transactions in the category." } } } } }