How can get registered user email

Hi ,I am developing a plugin to get detail of registered user by below mentioned code

var user = Apis.Get<Telligent.Evolution.Extensibility.Api.Version1.Users>().List(new UsersListOptions() { });


var userList = ((IList<Telligent.Evolution.Extensibility.Api.Entities.Version1.User>)user);


userList.Select(x => new { x.DisplayName, x.PrivateEmail, x?.JoinDate, x.PublicEmail }).ToList();

what happening i am getting empty in public mail , and getting empty in private email except logined user, how can i get the email of all registered user.

Thanks

Parents
  • Apis.Get<Telligent.Evolution.Extensibility.Api.Version1.Users>().List(new UsersListOptions() {  }); it is only returning 20 records how ca i get full record or can appply filter for ExtendedAttributes

  • It seems you've you've posted this same question a couple other times. Please refer to their answers.

    Hi i am using below code to get user list Apis.Get<Telligent.Evolution.Extensibility.Api.Version1.Users>().List(new UsersListOptions() { }); it is only returning 20 records how ca i get full record or…

    How can I get a list of Role members in my Plugin on backend?

Reply
  • It seems you've you've posted this same question a couple other times. Please refer to their answers.

    Hi i am using below code to get user list Apis.Get<Telligent.Evolution.Extensibility.Api.Version1.Users>().List(new UsersListOptions() { }); it is only returning 20 records how ca i get full record or…

    How can I get a list of Role members in my Plugin on backend?

Children