Consent Mode Overview
Microsoft Advertising Consent Mode is a privacy framework that adjusts how UET tags behave based on user consent signals. It helps advertisers comply with GDPR and other privacy regulations while maximizing data quality through conversion modeling.
How It Works
- User visits site: Consent banner appears (if in regulated region)
- User makes choice: Grants or denies consent for advertising cookies
- UET tag adjusts: Based on consent status, UET sends different signals
- Modeling: For non-consenting users, Microsoft uses modeled conversions to fill gaps
Implementation Steps
- Update UET tag: Add consent mode parameters to your UET tag
- Implement consent banner: Use a CMP (Consent Management Platform) compatible with Microsoft Advertising
- Set default consent state: Configure default consent state before user interaction
- Update consent on user action: Pass consent updates to UET when user interacts with banner
Consent States
| Parameter | Granted | Denied |
|---|---|---|
| Ad Storage | Full tracking | Cookieless ping only |
| Analytics Storage | Full analytics | No analytics cookies |
Code Example
// Set default consent state (before UET loads)
window.uetq = window.uetq || [];
window.uetq.push('consent', 'default', {
'ad_storage': 'denied',
'analytics_storage': 'denied'
});
// When user grants consent
window.uetq.push('consent', 'update', {
'ad_storage': 'granted',
'analytics_storage': 'granted'
});
Conversion Modeling
When consent is denied, Microsoft Advertising uses behavioral modeling to estimate conversions:
- Cookieless tracking: Anonymous pings without cookies
- Modeled conversions: AI estimates based on historical patterns
- Data recovery: Can recover up to 65-70% of lost conversion data
Bing vs Google Consent Mode
| Feature | Microsoft Advertising | Google Ads |
|---|---|---|
| Consent Parameters | ad_storage, analytics_storage | ad_storage, analytics_storage, ad_user_data, ad_personalization |
| Modeling | Available | Available (v2) |
| Default State | Configurable | Configurable |
Related: For Google's Consent Mode v2, see Google Consent Mode v2 Guide. For UET tag deployment, check GTM & Bing UET Guide. For Bing Ads 2023 updates including consent mode, see Bing Ads 2023 Product Updates.