We’re upgrading our email infrastructure — for immediate response, email andrewjgaber@gmail.com meanwhile.
Skip to main content
Part of Digital Empire
Affiliate / Other

Impact.com pixel (order-confirmation conversion tag)

Impact · Web Pixels API replacement · confidence: medium

Dies 2026-08-26

Paste-ready snippet
analytics.subscribe('checkout_completed', (event) => {
  const { checkout } = event.data;
  if (!checkout || !checkout.totalPrice) return;

  const orderRef = checkout.order ? checkout.order.id : checkout.token;
  const params = new URLSearchParams({
    OrderId: String(orderRef),
    TotalAmount: String(checkout.totalPrice.amount),
    Currency: checkout.totalPrice.currencyCode,
  });

  // Impact's conversion tracking is a tracking pixel/script tag — no DOM in
  // the sandbox, forward via fetch beacon instead. Replace ACCOUNT_SID and
  // PROGRAM_ID with your Impact partnership values (Impact > Technology
  // Partner setup for your Shopify integration).
  fetch(`https://trkn.us/ACCOUNT_SID/PROGRAM_ID/conversion?${params.toString()}`, {
    method: 'GET',
    keepalive: true,
    mode: 'no-cors',
  });
});

Legacy pattern detected via: app\.impact(radius)?\.com|impactcdn\.com|ire\.track\(

What this does NOT cover

What this does NOT cover: Impact's Universal Pixel (used for site-wide, non-checkout tracking) or Deep Link/SubID capture from landing-page URL parameters — both are separate Impact integrations. Confirm in the Impact partner dashboard which tracking mode the merchant's specific program actually requires before assuming this snippet is sufficient.

Test-event verification checklist

  • OrderId uses checkout.order.id (falls back to checkout.token) as the unique conversion reference.
  • TotalAmount/Currency sourced from checkout.totalPrice — confirm against Impact's own program setup whether the partnership expects gross or net-of-discount amount (program-specific, not a Web Pixels API fact).
  • mode: 'no-cors' matches the original pixel-beacon fire-and-forget behavior. Fires once per completed order, Thank You page only.
  • Verify live against the platform's own test-event tool: https://app.impact.com/

Related paste-ready snippets

Affiliate + Reviews networks · AWIN, ShareASale, Impact, Rakuten, and Yotpo reviews — all post-purchase pixels with identical Aug 26 exposure.