action bunq_list_all_transferwise_currency_for_user { description: "Used to get a list of supported currencies for Transferwise." provider: bunq method: GET path: "/user/{userID}/transferwise-currency" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { country: { type: "string" description: "The country code associated with the currency." } currency: { type: "string" description: "The currency code." } name: { type: "string" description: "The currency name." } } } } }