action bunq_list_all_insight_preference_date_for_user { description: "Used to allow users to set insight/budget preferences." provider: bunq method: GET path: "/user/{userID}/insight-preference-date" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { day_of_month: { type: "integer" description: "The day of month at which budgeting/insights should start." } } } } }