Separate schemas, not a shared table
Each business gets its own Postgres schema. Requests are pinned to it before application code runs, so a query has no way to name another business’s tables.
Security & data
You are about to put your customer list, your rates and your payment history into somebody else's software. That deserves specifics rather than reassurance, so this page names the mechanisms.
The core of it
Most software at this price keeps every customer in the same tables, separated by a column. It works right up until one query forgets the filter.
EventzNest never shares tables between businesses. Each request resolves to exactly one schema and is locked to it for the life of that request. The application code physically cannot reach past it.
An automated suite creates two businesses, fills both with data, and then attempts to reach one from the other through every module — customers, menu, quotations, bookings, payments, reports, staff and billing. It runs on every change. If isolation ever broke, the build would fail before the change shipped.
/api/customersHost: bluefig.eventznest.comProven by an isolation suite that runs on every change — not asserted.
Measures
Each business gets its own Postgres schema. Requests are pinned to it before application code runs, so a query has no way to name another business’s tables.
Our own admin console uses a different session cookie, a different secret and a different session store from your staff logins. A session from one is rejected by the other, in both directions.
Sign-in passwords are hashed with bcrypt and are not recoverable by anyone, us included. Your email password has to be replayed to send mail, so it is encrypted with AES-256-GCM instead — tampering makes it fail loudly rather than silently.
Once saved, it is stripped from every response the system can produce. Screens show whether one is set, never what it is.
Removing a staff member ends their access on their next request but keeps their authorship on past quotations and payments. The last active owner cannot be locked out, and nobody can deactivate themselves.
A wrong password, an unknown address and a deactivated account all return the same message after the same work — so neither the response nor its timing confirms whether an account exists.
Your data
Export and deletion are features, not a support ticket you have to escalate.
Sub-processors
The complete list. We will tell you before it changes.
| Provider | What they do | What they hold |
|---|---|---|
| Digital Ocean | Application hosting and Postgres database hosting | All business data you enter — customers, students, quotations, bookings, payments, attendance. |
| Your own email provider | Sending mail from your address | Whatever your quotations, receipts and reminders contain. You choose this provider, not us. |
| Google (Analytics 4 and Google Ads) | Measuring traffic to our public website and the performance of our advertising | Which pages of eventznest.com a visitor viewed and whether an enquiry followed. Loads on the public website only — never inside the application — and stores nothing until a visitor accepts cookies. None of your business data reaches it. |
| Meta (Facebook Pixel) | Measuring the performance of our advertising | Which pages of eventznest.com a visitor viewed and whether an enquiry followed. Loads on the public website only — never inside the application — and stores nothing until a visitor accepts cookies. None of your business data reaches it. |
| Microsoft (Clarity) | Heatmaps and session replay for our public homepage, so we can improve it | How a visitor moves through the eventznest.com homepage — clicks, scrolling, mouse movement. Our homepage only: not our pricing page, not any page with a form, and never inside the application. Runs only after a visitor accepts cookies, and text typed into input boxes is masked. |
On India's DPDP Act. When you use EventzNest, your customers' data stays yours — we process it on your instructions. The export, deletion, audit trail and encryption described above are the machinery that lets you answer your own customers' requests. Our written data processing terms are on the data processing page.