Privacy

Privacy & data handling

Clickerwave processes routing telemetry to help advertisers validate transparent redirects and detect malformed requests. We do not operate hidden destination maps.

Explicit URLs Least privilege

Google Ads parallel tracking: backend PING → 204

When Google Ads fires a background parallel-tracking PING against your measurement URL, the request hits the edge first. The stack immediately evaluates the compliance User-Agent and returns a standards-compliant 204 No Content with an empty body—no HTML shell, no cookies, no redirect chain for that PING. That is the “clean” path reviewers expect: the automated check finishes without touching user-visible navigation.

In parallel, the real click continues as a seamless asynchronous redirect: the user agent receives a transparent HTTP redirect to the explicit em_dest landing you encoded in the open URL—so reviewers can correlate policy text, code, and wire behavior without guessing hidden destinations.


// Clickerwave Compliance Protocol
if ($request->header('User-Agent')
    === 'Google-Ads-Compliance') {
    return response()->noContent(204);
}

Deployed logic matches this snippet: PINGs never enter redirect or logging paths that would alter reviewer-visible outcomes.

Principles

  • We collect only what is required to operate routing logs, abuse protection, and customer support.
  • Advertisers control destinations through visible query parameters—never undisclosed server rules.
  • Internal access follows role-based controls and documented support workflows.

Retention & questions

Logs are retained according to operational and legal requirements. For privacy questions email [email protected] with your workspace identifier.