TIERZERO/VRL
Request Audit
00 / DOCSAPI Reference · v1

TierZero API Reference.

Integration guides, webhook schemas, and edge node deployment documentation.

edge-node/deployment

Deploying the Edge Node

The TierZero asynchronous edge node must be injected into the <head> of your primary domain or deployed via Google Tag Manager. The script is non-blocking and executes identity resolution with zero latency.

install.snippet.html
HTML · JavaScript
<script>
  (function(t,z,e,r,o){
    t.TierZero=t.TierZero||function(){(t.TierZero.q=t.TierZero.q||[]).push(arguments)};
    var s=z.createElement(e); s.async=1; s.src=r;
    var f=z.getElementsByTagName(e)[0]; f.parentNode.insertBefore(s,f);
  })(window,document,'script','https://edge.deploytierzero.com/v1/init.js');

  TierZero('init', 'TZ-YOUR-CLIENT-ID');
  TierZero('track', 'page_view');
</script>
tierzero · docsverified · stable

Standard Resolution Payload

Once a session is resolved, TierZero POSTs a normalized payload to your configured webhook endpoint.

webhook.payload.json
JSON · v1
{
  "event_id": "req_892nf823jf",
  "timestamp": "2026-06-11T14:30:00Z",
  "resolution_status": "verified",
  "intent_score": 98.4,
  "household_identity": {
    "name": "REDACTED_IN_DEMO",
    "address": "REDACTED_IN_DEMO",
    "digital_vectors": ["email", "device_id"]
  }
}
tierzero · docsverified · stable

Production Endpoints

POST https://████████.tierzero.io/v1/██████/intake
POST https://████████.tierzero.io/v1/██████/resolve
GET https://████████.tierzero.io/v1/██████/health
Gated · Sandbox

Sandbox Token Required.

Access to live endpoint URLs, production API keys, and full CRM routing documentation requires an active integration contract.