action bunq_list_all_monetary_account_savings_for_user { description: "Gets a listing of all MonetaryAccountSavingss of a given user." provider: bunq method: GET path: "/user/{userID}/monetary-account-savings" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { alias: { type: "array" description: "The Aliases for the MonetaryAccountSavings." items: { type: "object" properties: { name: { type: "string" description: "The alias name." } service: { type: "string" description: "The pointer service. Only required for external counterparties." } type: { type: "string" description: "The alias type, can be: EMAIL|PHONE_NUMBER|IBAN." } value: { type: "string" description: "The alias value." } } } } all_auto_save_id: { type: "array" description: "The ids of the AutoSave." items: { type: "object" properties: { id: { type: "integer" description: "An integer ID of an object. Unique per object type." } } } } all_co_owner: { type: "array" description: "The users the account will be joint with." items: { type: "object" properties: { alias: { type: "object" properties: { avatar: { type: "object" properties: { anchor_uuid: { type: "string" description: "The public UUID of object this avatar is anchored to." } image: { type: "array" description: "The actual image information of this avatar." items: { type: "object" properties: { attachment_public_uuid: { type: "object" additionalProperties: true } content_type: { type: "object" additionalProperties: true } height: { type: "object" additionalProperties: true } width: { type: "object" additionalProperties: true } } } } style: { type: "string" description: "The style (if applicable) for this Avatar." } uuid: { type: "string" description: "The public UUID of the avatar." } } } country: { type: "string" description: "The country of the user. 000 stands for \"unknown\"" } display_name: { type: "string" description: "The name to be displayed for this user, as it was given on the request." } public_nick_name: { type: "string" description: "The current nickname of the user." } uuid: { type: "string" description: "The public UUID of the label-user." } } } status: { type: "string" description: "Can be: ACCEPTED, REJECTED, PENDING or REVOKED" } } } } avatar: { type: "object" additionalProperties: true } balance: { 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." } } } created: { type: "string" description: "The timestamp of the MonetaryAccountSavings's creation." } currency: { type: "string" description: "The currency of the MonetaryAccountSavings as an ISO 4217 formatted currency code." } daily_limit: { type: "object" additionalProperties: true } description: { type: "string" description: "The description of the MonetaryAccountSavings. Defaults to 'bunq account'." } id: { type: "integer" description: "The id of the MonetaryAccountSavings." } monetary_account_profile: { type: "object" properties: { profile_drain: { type: "object" properties: { balance_preferred: { type: "object" additionalProperties: true } balance_threshold_high: { type: "object" additionalProperties: true } savings_account_alias: { type: "object" properties: { avatar: { type: "object" additionalProperties: true } bunq_me: { type: "object" additionalProperties: true } country: { type: "string" description: "The country of the user. Formatted as a ISO 3166-1 alpha-2 country code." } display_name: { type: "string" description: "The name to display with this monetary account." } iban: { type: "string" description: "The IBAN of the monetary account." } is_light: { type: "boolean" description: "Whether or not the monetary account is light." } label_user: { type: "object" additionalProperties: true } merchant_category_code: { type: "string" description: "The merchant category code." } swift_account_number: { type: "string" description: "The account number used for a SWIFT payment. May or may not be an IBAN." } swift_bic: { type: "string" description: "The BIC used for a SWIFT payment." } transferwise_account_number: { type: "string" description: "The account number used for a Transferwise payment. May or may not be an IBAN." } transferwise_bank_code: { type: "string" description: "The bank code used for a Transferwise payment. May or may not be a BIC." } } } status: { type: "string" description: "The status of the profile." } } } profile_fill: { type: "object" properties: { balance_preferred: { type: "object" additionalProperties: true } balance_threshold_low: { type: "object" additionalProperties: true } issuer: { type: "object" properties: { bic: { type: "string" description: "The BIC code." } name: { type: "string" description: "The name of the bank." } } } method_fill: { type: "string" description: "The method used to fill the monetary account. Currently only iDEAL is supported, and it is the default one." } status: { type: "string" description: "The status of the profile." } } } } } overdraft_limit: { type: "object" additionalProperties: true } public_uuid: { type: "string" description: "The MonetaryAccountSavings's public UUID." } reason: { type: "string" description: "The reason for voluntarily cancelling (closing) the MonetaryAccountSavings, can only be OTHER." } reason_description: { type: "string" description: "The optional free-form reason for voluntarily cancelling (closing) the MonetaryAccountSavings. Can be any user provided message." } savings_goal: { type: "object" additionalProperties: true } savings_goal_progress: { type: "integer" description: "The progress in percentages for the Savings Goal set for this MonetaryAccountSavings." } setting: { type: "object" properties: { color: { type: "string" description: "The color chosen for the MonetaryAccount." } default_avatar_status: { type: "string" description: "The status of the avatar. Can be either AVATAR_DEFAULT, AVATAR_CUSTOM or AVATAR_UNDETERMINED." } icon: { type: "string" description: "The icon chosen for the MonetaryAccount." } restriction_chat: { type: "string" description: "The chat restriction. Possible values are ALLOW_INCOMING or BLOCK_INCOMING" } sdd_expiration_action: { type: "string" description: "The preference for this monetary account on whether to automatically accept or reject expiring SDDs." } } } status: { type: "string" description: "The status of the MonetaryAccountSavings. Can be: ACTIVE, BLOCKED, CANCELLED or PENDING_REOPEN" } sub_status: { type: "string" description: "The sub-status of the MonetaryAccountSavings providing extra information regarding the status. Will be NONE for ACTIVE or PENDING_REOPEN, COMPLETELY or ONLY_ACCEPTING_INCOMING for BLOCKED and REDEMPTION_INVOLUNTARY, REDEMPTION_VOLUNTARY or PERMANENT for CANCELLED." } updated: { type: "string" description: "The timestamp of the MonetaryAccountSavings's last update." } user_id: { type: "integer" description: "The id of the User who owns the MonetaryAccountSavings." } } } } }