In-Process API not returning User join date and last visited date.

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

Parents
No Data
Reply Children
  • Steven, Thanks for the information. I tried the custom page URL. If the user logged in to the community they can able to view all the user info. else it's the same issue.
    Now I worked on Exposing data to an external source. My extension not displaying Administrator-> extension section. Can you please help why it's not registered in Telligent?

    public class SampleRestEndpoint : IRestEndpoints
        {
            public IEventLog eventLog = Telligent.Evolution.Extensibility.Apis.Get<IEventLog>();
            public void Initialize()
            {
    
                eventLog.Write("init rest", new EventLogEntryWriteOptions());
            }
    
            public string Name { get { return "Sample Rest Endpoint"; } }
    
            public string Description { get { return "Sample Rest Endpoint Description"; } }
    
            public void Register(IRestEndpointController restRoutes)
            {
                eventLog.Write("register rest", new EventLogEntryWriteOptions());
                restRoutes.Add(1, "test", null, null, Evolution.Extensibility.Rest.Version2.HttpMethod.Get, (IRestRequest,HttpResponse)=> { });
            }
    
        }