action bunq_list_all_currency_cloud_beneficiary_for_user { description: "Endpoint to manage CurrencyCloud beneficiaries." provider: bunq method: GET path: "/user/{userID}/currency-cloud-beneficiary" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { account_number: { type: "string" description: "The account number to display for the beneficiary." } created: { type: "string" description: "The timestamp of the beneficiaries creation." } currency: { type: "string" description: "The currency of the beneficiary." } external_identifier: { type: "string" description: "The external identifier of the beneficiary." } id: { type: "integer" description: "The id of the profile." } name: { type: "string" description: "The name of the beneficiary." } updated: { type: "string" description: "The timestamp of the beneficiaries last update." } } } } }