-
Interactive DashboardsCreate interactive BI dashboards with dynamic visuals.
-
End-User BI ReportsCreate and deploy enterprise BI reports for use in any vertical.
-
Narrative Data StoriesThe Next Evolution of Data Storytelling
-
Visual Data Pipeline BuilderDesign Complex Data Flows, Simply.
-
Wyn ArchitectureA lightweight server offers flexible deployment.
-
Wyn Enterprise 7.1 is ReleasedThis release emphasizes Wyn document embedding and enhanced analytical express... -
Choosing an Embedded BI Solution for SaaS ProvidersAdding BI features to your applications will improve your products, better serve your customers, and more. But where to start? In this guide, we discuss the many options.
-
Embedded BIEmbed reporting & analytics within your own custom apps.
-
Self-ServiceEnable users to create custom ad hoc reports and dashboards.
-
MultitenancyEnhance your SaaS apps with a multitenant BI platform.
-
Data Governance and ModelingTransform raw data into insights quickly to reveal trends.
-
Scheduled DistributionSend data insights via scheduled email and chat notifications.
-
Extensible SecurityWyn delivers extensible security for your access control needs.
-
Visual GalleryInteractive sample dashboards and reports.
-
BlogExplore Wyn, BI trends, and more.
-
WebinarsDiscover live and on-demand webinars.
-
Customer SuccessVisualize operational efficiency and streamline manufacturing processes.
-
Knowledge BaseGet quick answers with articles and guides.
-
VideosVideo tutorials, trends and best practices.
-
WhitepapersDetailed reports on the latest trends in BI.
-
Choosing an Embedded BI Solution for SaaS ProvidersAdding BI features to your applications will impr... -
How to Batch Revoke Tokens Based on Their Creation Date
Background:
This article explains how to revoke tokens based on their creation date using an API.
As it can be seen in this knowledge base it is possible to revoke a token by using the connect/revocation end point. But what happens when you need to invalidate a large number of tokens, and haven’t kept track of all them?
In Version 9.0.00263.0 Wyn Enterprise has introduced a new end point /api/v2/identity/token/batch-revocation, which allows users to invalidate all tokens created before a specified date.
Token Creation:
| Property | Value |
|---|---|
| Route | {server}/api/v2/identity/token/batch-revocation |
| Method | POST |
| Authorization | AdminOnly |
| Body | { “creationBefore”: “2025-10-01” } |
cURL Example:
curl --location 'http://localhost:51980/api/v2/identity/token/batch-revocation' \
--header 'Reference-Token: <YourTokenHere>' \
--header 'Content-Type: application/json' \
--data '{
"creationBefore": "2026-02-13T01:31:00Z"
}'
Postman Screenshot Example:

The Response Body returns the count of the revoked tokens.
{
"count": 10
}
⚠️ Warning
This operation is irreversible and will immediately invalidate all matching tokens and terminate active Wyn sessions, except for tokens created through the Generate Token page on the Admin Portal.
Enea Gega
Enea is a Technical Product Enablement Specialist for the Wyn Enterprise Platform. He acts as a vital bridge between customers, product teams, and engineering to ensure that every new feature delivers genuine value and drives user adoption.
Enea specializes in translating complex customer needs into actionable insights for product roadmaps and technical documentation. By partnering cross-functionally, he ensures seamless delivery readiness and alignment across all releases.