action bunq_list_all_whitelist_sdd_for_user_monetary_account { description: "Get a listing of all SDD whitelist entries for a target monetary account." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/whitelist-sdd" encoding: json input: { type: "object" properties: { "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { counterparty_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: "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." } } } bunq_me: { 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." } } } 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." } } } credit_scheme_identifier: { type: "string" description: "The credit scheme ID provided by the counterparty." } id: { type: "integer" description: "The ID of the whitelist entry." } mandate_identifier: { type: "string" description: "The mandate ID provided by the counterparty." } maximum_amount_per_month: { 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." } } } monetary_account_incoming_id: { type: "integer" description: "The account to which payments will come in before possibly being 'redirected' by the whitelist." } monetary_account_paying_id: { type: "integer" description: "The account from which payments will be deducted when a transaction is matched with this whitelist." } status: { type: "string" description: "The status of the whitelist." } type: { type: "string" description: "The type of the SDD whitelist, can be CORE or B2B." } user_alias_created: { type: "object" additionalProperties: true } } } } }