action bunq_list_all_transferwise_user_for_user { description: "Used to manage Transferwise users." provider: bunq method: GET path: "/user/{userID}/transferwise-user" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { created: { type: "string" description: "The timestamp of the TransferwiseUser's creation." } email: { type: "string" description: "The email the user is registered with at TransferWise." } id: { type: "integer" description: "The id of the TransferwiseUser." } name: { type: "string" description: "The name the user is registered with at TransferWise." } source: { type: "string" description: "The source of the user at TransferWise." } updated: { type: "string" description: "The timestamp of the TransferwiseUser's last update." } } } } }