action bunq_list_all_card_name_for_user { description: "Return all the accepted card names for a specific user." provider: bunq method: GET path: "/user/{userID}/card-name" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { possible_card_name_array: { type: "array" description: "All possible variations (of suitable length) of user's legal name for the debit card." items: { type: "string" } } } } } }