Active Sessions Route
Is there a route on the api that will provide a list of active sessions?
public class StaffCurrentUserGETResponse
{
public string SessionID { get; set; }
public string IPAddress { get; set; }
public string Username { get; set; }
public string StaffID { get; set; }
public DateTime LoginDateTime { get; set; }
public int DurationDays { get; set; }
public int DurationHours { get; set; }
public int DurationMinutes { get; set; }
public int DurationSeconds { get; set; }
public long RequestCount { get; set; }
public long ConcurrentRequestCount { get; set; }
public long MaxConcurrentRequestCount { get; set; }
}public class JiwaAuthUserSessionResponse
{
public string Id { get; set; }
public string AuthProvider { get; set; }
public DateTime CreatedAt { get; set; }
public string UserName { get; set; }
public string DisplayName { get; set; }
public string APIKey_Type { get; set; }
public string PrincipalID { get; set; }
public string JiwaStaffID { get; set; }
public string JiwaStaffUsername { get; set; }
public string JiwaStaffTitle { get; set; }
public string JiwaStaffFirstname { get; set; }
public string JiwaStaffSurname { get; set; }
public string JiwaStaffEmailAddress { get; set; }
public byte[] JiwaStaffPicture { get; set; }
public string DebtorContactNameID { get; set; }
public string DebtorContactNameTitle { get; set; }
public string DebtorContactNameFirstName { get; set; }
public string DebtorContactNameSurname { get; set; }
public string DebtorContactNameEmailAddress { get; set; }
public string DebtorID { get; set; }
public string DebtorName { get; set; }
[IgnoreDataMember]
public HashSet<string> AllowedRoutePermissions { get; set; }
}SBarnes wrote:could there be the posssiblity that if the same user tries to login multiple times before the compiles have completed and the session assigned that this could cause file locks under version 7 SR20?