Guide
Configure advertising and custom integrations
Enable Meta, Microsoft, or LinkedIn signals and consume CookieWall preference updates in custom code.
Last reviewed September 12, 2026
Use CookieWall browser events when a custom tag manager or application needs to react to consent changes. Read the current category state, subscribe to the documented event, and keep the downstream tag logic aligned with CookieWall rather than maintaining a second source of consent truth.
Marketing signal behavior
Use the following table to understand how each area supports the task.
| Integration | Update |
|---|---|
| Meta Pixel | Calls the Meta consent command with grant or revoke from Marketing. |
| Microsoft UET | Queues a consent grant or deny from Marketing. |
| LinkedIn Insight Tag | Queues a consent grant or deny from Marketing. |
Listen for preference updates
window.addEventListener("cellwall:consent:updated", (event) => {
const preferences = event.detail;
// Enable or disable your integration from the relevant category.
});