This guide explains how to integrate Microsoft Clarity Consent API (also known as Consent v2) with Seers Ai for managing website analytics while ensuring user consent. Starting October 31, 2025, Clarity begins enforcing consent signal requirements for page visits originating from the European Economic Area (EEA), the United Kingdom (UK), and Switzerland (CH). A valid consent signal is required to ensure full functionality of Clarity features for users in these regions.
As a consent management platform, Seers Ai captures and manages user consent before Microsoft Clarity scripts are activated. This ensures that analytics and performance tracking scripts run only when users have given permission. If a user declines, Seers Ai prevents Clarity from tracking their activity, helping your website stay compliant while protecting user privacy.
Steps to Enable Microsoft Clarity Consent API using Seers Ai
To use the Microsoft Clarity Consent API (Consent v2) with Seers Ai, you need to enable it by following the steps below:
Step 1: Go to Seers.ai and log in to your dashboard.
Step 2: Go to Cookie Consent.
Step 3: In Domain Manager, select your domain or add a new one.
Step 4: Navigate to the Customise section and open the Preference tab.
Step 5: Under the Frameworks section, toggle on the Microsoft Clarity Consent API Integration option.
Once enabled, click Save Changes. You are all set! Seers Ai will automatically manage user consent for Clarity tracking on your site.
How Consent Is Handled at the backend
| window.clarity('consentv2',{
   ad_Storage: "granted | denied", 
   analytics_Storage: "granted | denied" 
}); | 
Full Consent Granted
| window.clarity('consentv2', {
ad_Storage: "granted",
analytics_Storage: "granted" 
}); | 
Consent Denied
| window.clarity('consentv2', {
ad_Storage: "denied",
analytics_Storage: "denied"
}); | 
Mixed/Partial Consent
| window.clarity('consentv2', {
ad_Storage: "granted",
analytics_Storage: "denied"
});  |