ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: JWT Token with Iframe I haven't come across any documentation specific to what you're asking for here. But it would have been nice when I went this route, so there's definitely a need for it. When I embedded a Sisense dashboard into an iFrame, I first set the iFrames SRC to the instance URL with the JWT token as part of the query string: i.e. https://path.toSisenseInstance.com/jwt?jwt=YOUR_TOKEN_HERE In the iFrames OnLoad handler, I navigate the frame to the dashboard to be displayed. So essentially what happens is you hit the page, the iFrame makes its first call to the server with your token which authenticates it. Once that page loads, OnLoad is fired, which loads up the dashboard in the iFrame now that you're authenticated. There's lots of examples for creating a JWT token online but here's a quick one. You'd just take this string value and place it in the query string that you first navigate to. private string GenerateSisenseAuthToken() { string sharedKey = GetSharedSecret(); // This is the shared key configured in Sisense var securityKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(sharedKey)); var credentials = new SigningCredentials(securityKey, "HS256"); var header = new JwtHeader(credentials); var user = GetUserName(); // MyUser@example.com TimeSpan timeSinceEpoch = (_dateTimeProvider.UtcNow - new DateTime(1970, 1, 1)); int secondsSinceEpoch = (int)timeSinceEpoch.TotalSeconds; var payload = new JwtPayload { { "iat", secondsSinceEpoch}, { "sub", user }, { "jti", Guid.NewGuid().ToString() } }; var secToken = new JwtSecurityToken(header, payload); var handler = new JwtSecurityTokenHandler(); return handler.WriteToken(secToken); } Enhancing dependent filtering functionality to allow for a subset-filtering When adding a dependent filter, the only [available] lock option is a group lock. It is more useful having the ability to lock the primary filter but allow for dependent filtering. For example, if I lock an audit title, I want to retain the ability to filter specific question(s) within the audit. If both are locked as a group, I have to ensure end users know how to filter through the widget, which can be difficult if the full text of the question does not display or the user is not proficient. Add A Dashboard's folder name to the Analytics List View of Dashboards Currently the Analytics screen displays available dashboards in a "list" view or a "tile" view. The "tile" view includes columns "Name", "Owner", "Data Sources", "Last Published", "Last Modified", "Total Viewers", "No. of Widgets". This is a request to add a new column "Source Folder". This would be helpful for users with a large quantity of dashboards as they could sort by the "Source Folder". In the future, the list view functionality could be expanded to allow grouping by this column which would further consolidate the view. Thank you!