I'm using C#. After authenticating, the following code returns null for all LastLogins. It works for other fields I'm pulling such as Id, Name, Email, SheetsOwned, etc. Is there an issue with that particular field coming through the API? Since it is a date field, does it need to be treated differently, though I am only attempting to display it to my console at the moment? Can anyone else confirm if the issue exists for them?
PaginatedResult<User> usersX = smartsheet.UserResources.ListUsers(null, null);
foreach (User vUser in usersX.Data)
{
Console.WriteLine(vUser.LastLogin);
}
Thanks, Mike