File Structure
playground/
├── edge/
│ ├── init runs on the CDN edge when a visitor session starts
│ ├── tag runs on the CDN edge for every tracked event
│ ├── user runs on the CDN edge when user identity changes
│ └── scheduled runs on the CDN edge on a cron schedule
├── browser/
│ ├── init runs in the browser once on page load
│ ├── tag runs in the browser for every tracked event
│ └── user runs in the browser when user identity changes
└── apis/
├── cdn/ browser-callable HTTP endpoints
└── server/ authenticated server-only HTTP endpointsEdge files
Browser files
API endpoints
Enabled stages
Last updated
Was this helpful?

