Back to overview
Lesson 4 of 6

Tracking and Attribution for Multi-Brand

7 min read

Why Single-Brand Tracking Breaks

Single-brand tracking is simple: one click URL, one postback endpoint, one conversion event. Multi-brand tracking adds layers. An affiliate click might land on Brand A but the player registers on Brand B after following an internal cross-sell link. Which brand gets the conversion? Which commission applies? Without explicit routing rules, the answer is "whichever system processes the postback first" -- which is not a strategy.

Tracking Architecture Options

ArchitectureHow It WorksTrade-offs
Unified tracking domainOne domain routes all clicks, brand identified by parameterSimplest for affiliates, single integration point, requires robust parameter handling
Brand-specific domains with shared backendEach brand has its own tracking domain, all postbacks route to one systemClean brand separation in URLs, shared attribution logic, more DNS management
Fully separate tracking stacksEach brand runs its own tracking platform instanceMaximum isolation, zero cross-brand visibility unless manually aggregated

A unified tracking domain with brand-level parameters is the most operationally efficient model. Affiliates manage one set of links, and your system handles brand routing internally. This requires your platform to support brand-level sub-IDs or namespace parameters.

S2S Postback Routing for Multi-Brand

Server-to-server postback tracking in multi-brand programs needs explicit routing logic. When Brand A fires a conversion event, the postback must include the brand identifier so your affiliate platform can match it to the correct deal structure, commission rate, and affiliate.

  • Include a brand_id parameter in every S2S postback URL
  • Map brand_id to the correct commission structure in your affiliate platform
  • Validate that the affiliate has active deals for the brand firing the postback
  • Log cross-brand conversion attempts separately for fraud monitoring
  • Set up alerts for postbacks arriving from brands an affiliate is not approved for

Cross-Brand Attribution Rules

When a player clicks an affiliate link for Brand A but converts on Brand B, you need a clear attribution policy. There are two common approaches: strict attribution (the conversion only counts if the brand matches the click) and portfolio attribution (the conversion counts regardless of which brand converts, as long as the affiliate referred the player to any brand in the portfolio).

Portfolio attribution is more affiliate-friendly and reflects the reality that players often cross-register across brands. However, it requires your tracking system to maintain a portfolio-level cookie or device fingerprint that persists across brand domains. Strict attribution is simpler but may undercount affiliate value, especially in iGaming where players frequently switch between casino and sportsbook brands.

If you use strict attribution, expect affiliate complaints about lost conversions. If you use portfolio attribution, expect higher commission costs but stronger affiliate relationships. Most mature multi-brand programs use portfolio attribution with clear terms about which brands are included.

Multi-Brand Reporting Requirements

Your reporting layer needs to support both brand-level and portfolio-level views. Affiliate managers need to see per-brand performance for optimization. Finance needs portfolio-level totals for payout processing. Compliance needs brand-level breakdowns for regulatory reporting. A reporting system that only shows one view forces manual aggregation, which introduces errors.

Key Takeaways

  • A unified tracking domain with brand-level parameters is the most efficient multi-brand architecture
  • Every S2S postback must include a brand identifier to route conversions to the correct deal structure
  • Portfolio attribution credits affiliates for cross-brand conversions but costs more -- choose deliberately
  • Reporting must support both brand-level detail and portfolio-level rollups for different stakeholders