Trying to fetch the user information using In-process API. The APIs not returning the user "join date" and "last visited date".
Is any configuration to access those fields in API?

Thanks
Vignesh D
Trying to fetch the user information using In-process API. The APIs not returning the user "join date" and "last visited date".
Is any configuration to access those fields in API?

Thanks
Vignesh D
Steven Is the above authentication code is okay for accessing in-process API?
No authentication codes should be needed when accessing the in-process API, because it is expected to be used when compiled into the integrated app environment.
While it can feasibly work, usage of IHttpHandler is not recommended. The appropriate way to handle these is raw urls
https://community.telligent.com/community/11/w/developer-training/65062/page-definition-and-url-routing
I would also highly recommend you make use of the User REST API since it is working with the way you've set up your environment. If you'd rather define a custom REST API to re-expose the internal userApi calls, then this is the appropriate way:
Exposing Data to External Sources