action bunq_list_all_monetary_account_external_for_user { description: "Endpoint for managing monetary accounts which are connected to external services." provider: bunq method: GET path: "/user/{userID}/monetary-account-external" 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 MonetaryAccountExternal." 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." } } } } 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: "string" description: "The public UUID of the public attachment containing the image." } content_type: { type: "string" description: "The content-type as a MIME filetype." } height: { type: "integer" description: "The image height in pixels." } width: { type: "integer" description: "The image width in pixels." } } } } style: { type: "string" description: "The style (if applicable) for this Avatar." } uuid: { type: "string" description: "The public UUID of the avatar." } } } 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 MonetaryAccountExternal's creation." } currency: { type: "string" description: "The currency of the MonetaryAccountExternal as an ISO 4217 formatted currency code." } daily_limit: { type: "object" additionalProperties: true } description: { type: "string" description: "The description of the MonetaryAccountExternal. Defaults to 'bunq account'." } display_name: { type: "string" description: "The legal name of the user / company using this monetary account." } id: { type: "integer" description: "The id of the MonetaryAccountExternal." } 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" properties: { avatar: { type: "object" additionalProperties: true } 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." } } } 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 MonetaryAccountExternal's public UUID." } reason: { type: "string" description: "The reason for voluntarily cancelling (closing) the MonetaryAccountExternal, can only be OTHER." } reason_description: { type: "string" description: "The optional free-form reason for voluntarily cancelling (closing) the MonetaryAccountExternal. Can be any user provided message." } 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 MonetaryAccountExternal. Can be: ACTIVE, BLOCKED, CANCELLED or PENDING_REOPEN" } sub_status: { type: "string" description: "The sub-status of the MonetaryAccountExternal 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 MonetaryAccountExternal's last update." } user_id: { type: "integer" description: "The id of the User who owns the MonetaryAccountExternal." } } } } }