Users represent users within your application, they are used to:
Each user should contain:
Get user information by ID from the connected client:
stringeeClient.getUserInfo(['USER_1_ID', 'USER_2_ID']).then(users => {
users.forEach(user => {
console.log(user.userId, user.name, user.avatar);
});
}).catch(console.log);