Bootstrap
Create workspace/project records, send first-party events, and establish a working data stream.
(not created)Project AstraOS - Phase 3 Foundation
This build delivers the core data foundation: workspace and project scaffolding, validated ingestion APIs, anonymous/session continuity, identity linkage, unified profiles, rule-driven orchestration, and channel readiness controls.
Create workspace/project records, send first-party events, and establish a working data stream.
(not created)Event ingest verification from /api/projects/:id/events.
Deterministically link anonymous activity with a known buyer profile.
Unified activity stream across linked events and sessions for the selected profile.
Configure channel connectors, define event-driven automation rules, and monitor internal task outputs.
Use dedicated pages for segments, merge review, and campaign graph operations.
Send events to POST /api/track/event with this payload shape.
{
"projectId": "<PROJECT_ID>",
"eventName": "page_view",
"eventCategory": "behavior",
"pageUrl": "https://example.com/pricing",
"referrer": "https://google.com/",
"properties": {
"cta": "pricing-demo"
},
"sourceContext": {
"utm_source": "google",
"utm_medium": "cpc",
"utm_campaign": "spring-launch",
"landingPage": "https://example.com/pricing"
}
}