Observable version of the UsersClient. All methods return RxJS Observables instead of Promises.
client.users.list().subscribe(users => { console.log('Project users:', users)}) Copy
client.users.list().subscribe(users => { console.log('Project users:', users)})
Fetch a user by user ID
User ID of the user to fetch. If me is provided, a minimal response including the users role is returned.
me
Observable version of the UsersClient. All methods return RxJS Observables instead of Promises.
Example