action bunq_list_all_transferwise_recipient_for_user_transferwise_quote { description: "Used to manage recipient accounts with Transferwise." provider: bunq method: GET path: "/user/{userID}/transferwise-quote/{transferwise-quoteID}/transferwise-recipient" 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: { account_id: { type: "string" description: "Transferwise's id of the account." } account_number: { type: "string" description: "The account number." } bank_code: { type: "string" description: "The bank code." } country: { type: "string" description: "The country of the account." } currency: { type: "string" description: "The currency the account." } name_account_holder: { type: "string" description: "The name of the account holder." } } } } }