Private events for the people already in your network.
PVBLIC Events connects to the intake gate that owns every partner profile — issuing single-use passes, checking guests in at the door, and lighting up the room when a VIP arrives.
- 30s
- QR rotation window
- 1
- scan per code
- <2s
- VIP alert latency
- 0
- PII duplicated
One source of truth per concern
The gate owns identity, profile and consent. Events owns invitations, passes, check-ins and VIP alerts. Neither duplicates the other.
Consent-gated invites
Only people who exist in the gate and consented to events can be invited. Keyed on person_id — never email.
Single-use, non-shareable passes
Rotating, device-bound QR codes that change every 30 seconds and redeem exactly once. Screenshots don't work.
Offline door check-in
Scanner verifies signatures and freshness without a network, then reconciles the redemption ledger when wifi returns.
Real-time VIP alerts
When a VIP scans in, hosts get an instant card with their profile headline — powered by Postgres LISTEN/NOTIFY.
Attendance push-back
Every check-in flows back to the gate's profile and onward to the CRM via a signed webhook.
GDPR by design
people_cache is a projection, not a store of record. Erasure tombstones from the gate redact PII everywhere.