action bunq_list_all_legal_name_for_user { description: "Endpoint for getting available legal names that can be used by the user." provider: bunq method: GET path: "/user/{userID}/legal-name" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { legal_names: { type: "array" description: "All legal names that can be used by the user" items: { type: "string" } } } } } }