action bunq_list_all_transferwise_transfer_for_user_transferwise_quote { description: "Used to create Transferwise payments." provider: bunq method: GET path: "/user/{userID}/transferwise-quote/{transferwise-quoteID}/transferwise-transfer" encoding: json input: { type: "object" properties: { "transferwise-quoteID": { type: "integer" } userID: { type: "integer" } } required: ["transferwise-quoteID", "userID"] additionalProperties: false } output: { type: "array" 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: "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." } } } amount_source: { 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." } } } amount_target: { type: "object" additionalProperties: true } counterparty_alias: { type: "object" additionalProperties: true } pay_in_reference: { type: "string" description: "The Pay-In reference of the payment." } quote: { type: "object" required: ["currency_source", "currency_target"] properties: { amount_fee: { type: "object" additionalProperties: true } amount_source: { type: "object" additionalProperties: true } amount_target: { type: "object" additionalProperties: true } created: { type: "string" description: "The timestamp of the quote's creation." } currency_source: { type: "string" description: "The source currency." } currency_target: { type: "string" description: "The target currency." } id: { type: "integer" description: "The id of the quote." } quote_id: { type: "string" description: "The quote id Transferwise needs." } rate: { type: "string" description: "The rate." } time_delivery_estimate: { type: "string" description: "The estimated delivery time." } time_expiry: { type: "string" description: "The expiration timestamp of the quote." } updated: { type: "string" description: "The timestamp of the quote's last update." } } } rate: { type: "string" description: "The rate of the payment." } reference: { type: "string" description: "The reference of the payment." } status: { type: "string" description: "The status." } status_transferwise: { type: "string" description: "The status as Transferwise reports it." } status_transferwise_issue: { type: "string" description: "A status to indicatie if Transferwise has an issue with this payment and requires more information." } sub_status: { type: "string" description: "The subStatus." } time_delivery_estimate: { type: "string" description: "The estimated delivery time." } } } } }