Infrastructure Overview
Manage GTM server-side container provisioning, snippet injection, edge workers, and custom subdomains.
Active GTM Server Containers
Your deployed server-side containers and their routing mappings.
Paste your GTM Container Config string, pick a region, assign a custom subdomain, and deploy — all without touching GCP or a terminal.
Generate a modified GTM snippet that routes through your first-party subdomain. Includes parameter obfuscation to defeat fingerprint-based ad-blockers.
Pre-built same-origin edge scripts that proxy example.com/gtm/ to your sGTM container with correct IP forwarding headers.
Real-time health checks against each container's /healthy endpoint. Includes uptime tracking, response time charts, and alert thresholds.
Choose from EU-West, US-East, US-West, APAC (Singapore), or South America for your GTM server container. Estimated latency is shown per region to help you deploy closest to your audience.
Container Provisioning Wizard
Deploy your GTM server container in 4 steps. No GCP console, no DevOps required.
Choose Your Tracking Method
Select the deployment model that best fits your marketing and technical requirements.
Option 1: sGTM + Datablow
RECOMMENDED (BEST PRACTICE)- Better attribution quality score across search and social ads
- Improved iOS tracking with extended first-party cookie lifetimes
- Highly resilient to ad-blockers and tracking protection shields
- Forward to multiple endpoints (Meta CAPI, GA4, TikTok, Ads) from one server stream
Option 2: Meta Pixel Gateway
DIRECT CAPI SETUP- Replace standard Pixel tag with the gateway proxy tracking script
- Browser sends events directly to your tracking subdomain prefix
- No external subscription wrapper or complex custom container files required
- Dedicated forwarding directly to Meta Server endpoints
Choose the region closest to your primary audience to minimize tracking latency.
Custom Loader & Snippet Generator
Generate a modified GTM script that routes through your first-party subdomain, bypassing ad-blockers.
id= and gtm_auth= are base64-encoded and routed through your custom path alias. Ad-blockers cannot match known GTM fingerprints.
datablow-gtm under your WordPress site's wp-content/plugins/ directory, save this code as datablow-gtm.php inside it, and activate it in the admin dashboard.
<iframe> — it is completely isolated from the main page DOM. GTM Tag Assistant cannot detect scripts inside this sandbox, so it reports "no debuggable tags".Solution: Two-part setup. You need both snippets below — Part 1 injects GTM into your storefront so Tag Assistant can find it, Part 2 captures checkout/purchase events from the sandboxed pixel context.
layout/theme.liquid → paste this snippet right before the closing </head> tag → click Save.
Datablow sGTM → paste this script → click Connect pixel.
- Download the
datablow-connect-tag.tpltemplate file above. - In your GTM Server Container, navigate to Templates → Tag Templates → Click New.
- Click the top-right menu (three vertical dots) and choose Import.
- Select the downloaded
datablow-connect-tag.tplfile and click Save. - Go to Tags → New → Choose the Datablow Connect Server Tag.
- Set the Datablow Tracking Endpoint to:
https://ss.yourdomain.com(your deployed subdomain) and select a trigger to fire on all events.
<head> section
?gtm_debug=x
https://ss.yourdomain.com/healthy returns {"health":"ok"}
Edge Worker Templates
Same-origin setup scripts that proxy your site's subfolder to your sGTM container, bypassing ITP and extending cookie lifetimes.
- 1 Go to Cloudflare Dashboard → Workers & Pages → Create Application → Worker
- 2 Paste the code → click Deploy
-
3
Under Settings → Triggers, add route:
example.com/gtm/* -
4
Test:
curl https://example.com/gtm/healthy
example.com/gtm/ are same-origin. Safari's ITP only restricts third-party cookies — your server sets first-party cookies that survive 180+ days.
- 1.Create Lambda function in us-east-1 (required for Lambda@Edge)
- 2.Set runtime: Node.js 18.x, handler:
index.handler - 3.Deploy to Lambda@Edge from CloudFront behavior matching path pattern
/gtm/* - 4.Trigger type: Origin Request
- 1.Save as
middleware.tsin your project root - 2.Add env var
SGTM_HOST= your sGTM domain - 3.Deploy:
vercel --prod - 4.Middleware runs at edge globally — zero cold starts
- 1.Add this block to your existing
server {}block - 2.Test config:
nginx -t - 3.Reload:
nginx -s reload - 4.Requires
ngx_http_proxy_module(default in most builds)
Health Dashboard
Real-time /healthy endpoint monitoring for all your sGTM containers.
Regional Deployment
Deploy your sGTM container to the region closest to your audience. Multi-region redundancy available on Agency Scale.
My Profile
Manage your account, API credentials, subscription, and activity.
| Name: | — |
| Slug: | — |
| Member since: | — |
API Key Management
Generate API keys to authenticate with the Datablow backend endpoints or programmatically manage your containers.
Billing & Subscription
Manage your subscription, view resource usage limits, and update billing information.
Platform Audit Log
Review organization security logs, container deployments, and verification checks.
| Action | Resource | User | IP Address | Timestamp |
|---|
Global User & System Management
View system metrics, override user subscriptions, change roles, and manage tenant accounts.
| User / Email | Role | Organization (Slug) | Current Plan | Active Resources | Actions |
|---|
Global Settings & Plan Pricing
Configure third-party OAuth credentials, dynamic SMTP email servers, payment processors, and custom subscription tiers.
Meta CAPI Gateway
Plug-and-play server-side pixel gateway to bypass ad-blockers and restore tracking accuracy.
Create Meta Conversions API Gateway
Establish a dedicated proxy gateway that relays client web events directly to Meta Graph servers using your Pixel ID and API Access Token. No manual tagging required.
Direct CAPI Integration
Send Meta Conversions API events directly from your website or server — no gateway required. Free on all plans.
With Direct CAPI, you copy-paste the Meta Pixel base code (with your Pixel ID) into your website's <head> tag. Then you add a server-side POST call from your backend (Node.js, PHP, Python, etc.) to the Meta Graph API endpoint to record conversions with full user data — bypassing browser restrictions and ad blockers entirely.
<head> of every page. Then use the server snippet for purchase/lead events from your backend.<!-- Click "Generate Snippet" above to create your code -->
// Node.js / Express - Direct Meta CAPI Event
const axios = require('axios');
async function sendCapiEvent(eventName, userData, eventSourceUrl) {
const PIXEL_ID = process.env.META_PIXEL_ID;
const ACCESS_TOKEN = process.env.META_CAPI_TOKEN;
const response = await axios.post(
`https://graph.facebook.com/v19.0/${PIXEL_ID}/events`,
{
access_token: ACCESS_TOKEN,
data: [{
event_name: eventName,
event_time: Math.floor(Date.now() / 1000),
action_source: 'website',
event_source_url: eventSourceUrl,
user_data: {
client_ip_address: userData.ip,
client_user_agent: userData.userAgent,
em: userData.hashedEmail, // SHA-256 hashed email
ph: userData.hashedPhone, // SHA-256 hashed phone
fbp: userData.fbp,
fbc: userData.fbc,
},
}],
}
);
return response.data;
}
// Usage in your Express route:
app.post('/checkout/complete', async (req, res) => {
await sendCapiEvent('Purchase', {
ip: req.ip,
userAgent: req.headers['user-agent'],
fbp: req.cookies['_fbp'],
fbc: req.cookies['_fbc'],
}, req.headers.referer);
res.json({ success: true });
});
The Datablow CAPI Tracker plugin adds server-side Meta CAPI events to your WordPress site with zero code. Supports WooCommerce, hashed user data, deduplication — with a visual settings panel.
_fbp and _fbc cookies from the browser to enable deduplication.event_id on both browser pixel and server CAPI call with the same unique value.DataBlow Gateway
Proxies Google Analytics 4 event streams and Google Ads tags in a secure first-party setting.
Create DataBlow Gateway
Deploy a fast, secure edge proxy. Serve Google scripts (`gtag.js`, `gtm.js`) from your first-party subdomain, extending ITP cookie lifetimes to 2+ years and bypassing ad-blocker filters.
Other Server Gateways
Enable server-side Conversions API gateways for TikTok, Snapchat, Shopify, and Pinterest.
Send web events directly to TikTok Ads servers. Restores event mapping and increases match values by 20%+.
Forward events directly to GA4 using the Measurement Protocol. Preserves visitor sessions and bypasses ad-blockers.
Securely stream offline conversions and hashed user parameters directly to Google Ads conversion trackers.
Relay qualified leads and website events to LinkedIn Campaign Manager to elevate B2B matches.
Route purchases, signups and clicks to Snap Pixel endpoints, bypassing browser cookie blocks.
Connects directly to Shopify Customer Pixels and routes all checkouts and events in first-party context.
Use the viaSocket connector for server-side tracking to trigger offline conversion events from 2,000+ apps to www.datablow.com gateway.
Plugin Catalog
Download first-party tracking plugins and SDK extensions for popular CMS platforms.
Offline Conversions
Ingest offline event logs from CRMs, POS, or phone trackers and route them to Meta CAPI & Google Ads.