Platform Security Whitepaper

Version 3.1 — September 10, 2026

Classification: Prospect & Customer

7
Security Layers
518
Protected API Routes
Zero
Card Data Stored

1. Transport Layer Security (HTTPS / TLS)

All communications between users, clients, and the Travel HQ AI platform are encrypted using industry-standard transport protocols. No unencrypted HTTP traffic is accepted.

Security AspectStatusDetails
HTTPS Enforcement✅ EnforcedAll traffic redirected to HTTPS; HTTP requests rejected
TLS Protocol✅ TLS 1.2 / 1.3Modern encryption with forward secrecy
SSL Certificate✅ Auto-ProvisionedCertificates auto-renewed; no manual intervention required
HSTS Headers✅ EnabledBrowser instructed to always use HTTPS
Certificate Monitoring✅ AutomatedRenewal well before expiration

What this means: Every interaction — login, file upload, payment, form submission — is encrypted end-to-end. Even on public WiFi, data cannot be intercepted.

2. Authentication & Identity Management

Travel HQ AI implements a multi-layered authentication system that protects every user account from unauthorized access.

Password Security

FeatureImplementation
Password Hashingbcrypt with per-password unique salts — computationally expensive to brute-force
Minimum Length8 characters minimum enforced at API level
Forced Password ChangeTemporary passwords require change on first login
Password ResetCryptographic token with 1-hour expiry; emailed to verified address
Email Enumeration PreventionPassword reset always returns success — attackers cannot discover valid emails
Account LockoutRepeated failed logins temporarily lock the account to stop brute-force attempts

Session Management

FeatureImplementation
Session StrategyJWT (JSON Web Tokens) with cryptographic signing
Token StorageSecure, HttpOnly cookies — inaccessible to JavaScript
CSRF ProtectionBuilt-in cross-site request forgery protection
Session RefreshTokens refreshed on critical actions (role change, profile update)

Onboarding Security Flow

Every new user must complete a mandatory security flow before accessing the platform:

  • Email Verification — account linked to verified email
  • Forced Password Change — temporary/invited passwords must be changed immediately
  • Terms of Service Acceptance — legal agreement with version tracking, IP address, and timestamp recorded
  • Profile Completion — required before accessing dashboard functionality
  • Tester Approval — trial/tester users require explicit admin approval with time-limited access

Team Invitations

  • Invitation-only onboarding via cryptographic tokens
  • Tokens validated before team join; expired tokens rejected
  • Role pre-assigned by admin during invitation

3. Role-Based Access Control (RBAC)

Access to every feature, page, and API endpoint is governed by a dual-layer role system — preventing unauthorized data access even for authenticated users.

System Roles (UserRole)

RoleDescriptionKey Permissions
ADMINPlatform / Agency OwnerFull access — user management, tenant settings, audit logs, all data
MANAGERSenior Advisor / Team LeadCreate/edit trips & clients, view audit logs
VIEWERJunior Team MemberRead-only access to assigned data; no sensitive operations

Tenant Roles (TenantRole)

RoleTypical Assignment
OWNERAgency owner with full administrative control
MANAGEROffice manager with team oversight
ADVISORTravel advisor with client-facing access
VIEWERRead-only team member
ADVISOR_TESTERTime-limited trial advisor with expiry enforcement

Permission Matrix

ActionAdminManagerViewer
View Clients & Trips
Create/Edit Records
View Audit Logs
Manage Team Members
Modify Tenant Settings
Generate Impersonation Tokens✅ (Platform Owner)

518 API routes are individually protected with session validation, role checks, and tenant scoping. Every protected route validates the server-side session and returns 401 if unauthenticated.

4. Multi-Tenant Data Isolation

Travel HQ AI is architected as a multi-tenant platform where each travel agency operates in a completely isolated data environment.

Isolation Guarantees

LayerProtection
Database QueriesEvery query is automatically scoped by tenantId — no cross-tenant data leakage possible
API RoutesSession user's tenant ID is derived server-side, never from client requests
File StorageUploaded files are namespaced per tenant in cloud storage
Email TemplatesEach tenant has independent email template customizations
Branding & SettingsColors, logos, consent text, payment links — all per-tenant
Audit LogsLogs are tenant-scoped; agencies only see their own activity

🔒 Zero Cross-Tenant Visibility: Agency A can never see Agency B's clients, trips, invoices, documents, or any other data — regardless of any API manipulation attempt. Tenant isolation is enforced at the database query level.

5. Third-Party Payment Model

🔒 Zero Card Data — External Redirect Payment Architecture: Travel HQ AI does not collect, process, store, or transmit client payment card data. All payment transactions are handled entirely by external third-party processors using a redirect model. No payment card information ever enters or passes through the platform.

How Payments Work

Payment MethodProviderHow It Works
Stripe Payment LinksStripe (PCI DSS Level 1)The platform generates a Stripe-hosted payment link. The client is redirected to Stripe's checkout page to enter card details. Payment is processed entirely on Stripe's infrastructure.
External Payment URLsHost Agency / Consortia / CustomThe advisor configures an external payment URL. The client is redirected to the external provider's website to complete payment.
Planning FeesStripeThe advisor creates a planning-fee Stripe Payment Link. Funds settle directly to the advisor's Stripe account.

Why This Matters for Security

Security BenefitDetails
Zero Card Data ExposureThe platform never collects, processes, stores, or transmits any payment card numbers, bank account details, or financial instrument data.
PCI DSS Out of ScopeBecause no cardholder data enters the platform, PCI DSS compliance requirements do not apply to Travel HQ AI itself.
No Tokenized Card StorageThe platform stores no card data in any form — encrypted or otherwise.
Stripe Handles ComplianceStripe is a PCI DSS Level 1 Certified Service Provider and bears full compliance responsibility for payment processing.
Minimal Attack SurfaceDelegating all payment handling to external processors eliminates the entire category of payment-related vulnerabilities.

Advisor Responsibilities

As outlined in the platform's Terms of Service (Section 9.5):

  • Travel advisors are solely responsible for their own Stripe account setup, compliance, and payment accuracy
  • Advisors who use external payment URLs are responsible for the security and compliance of those third-party providers
  • The platform provides the tools to generate and deliver payment links — it does not process, hold, or guarantee any funds
  • All payment disputes, chargebacks, and refunds are handled directly between the advisor, their payment processor, and the client

Reference: This payment model is documented in the platform's Terms of Service (Client Payment Collection) and Privacy Policy (Information We Do Not Collect). Both confirm that no payment card data enters the Travel HQ AI platform at any point.

6. Client Consent & Authorization Framework

Travel HQ AI implements a comprehensive, legally defensible consent and authorization system for client data access and communications.

Authorization Lifecycle

PhaseDurationDescription
Client Portal Authorization7 daysClient grants data access via secure portal with full consent text
Extension (Optional)+7 daysOne-time extension via portal re-consent or email confirmation
Maximum Window14 daysHard limit — no further extensions possible
Post-ExpiryBlockedAll access requests denied; data remains encrypted
RevocationImmediateAdvisor or client can revoke authorization at any time

Consent Record Tracking

Every consent interaction is immutably recorded with:

  • Full Consent Text — exact language shown to the client at time of consent
  • Timestamp — precise date/time of consent
  • IP Address — client's IP at time of consent
  • User Agent — browser/device information
  • Signature Data — digital signature capture when applicable
  • Links to Legal Documents — Terms of Service, Privacy Policy, Client Agreement URLs recorded at consent time

SMS & Communication Consent

  • Explicit opt-in required for text message communications
  • Phone number confirmed by double-entry verification
  • Consent status stored per-client with audit trail

Terms of Service Acceptance

  • Version-tracked acceptance — records which version was accepted
  • IP address and user agent captured at acceptance time
  • Middleware enforces acceptance before dashboard access
  • New versions require re-acceptance

7. Comprehensive Audit Logging

Every sensitive action on the platform is recorded in an immutable audit log with full context — who, what, when, and where.

Tracked Actions

CategoryLogged Events
AuthenticationLogin, Logout, Failed Login, Signup
Client RecordsCreate, Update, Delete, View
Trip ManagementCreate, Update, Delete, Archive
DocumentsUpload, Download, Delete, PDF Processing
Payment LinksGenerate Payment Link, Track Payment Status
CommissionsLedger entries, Reconciliation, Splits/Overrides, Payouts
MessagingEmail send, inbound filing, logged client communications
AuthorizationsExtend, Revoke Authorization
SettingsTenant Settings Changes, User Settings Changes
ImpersonationToken Generation, Login as Another User

Audit Record Fields

FieldDescription
Actor User IDWho performed the action
Actor RoleRole at time of action (ADMIN, MANAGER, VIEWER)
ActionStandardized action type (e.g., CREATE_CLIENT, GENERATE_PAYMENT_LINK)
Entity Type & IDWhat was affected (Client, Trip, Document, etc.)
MetadataAdditional context (e.g., payment method, reason)
IP AddressRequest origin IP
User AgentBrowser and device information
TimestampPrecise datetime of action

Audit logs are tenant-isolated — each agency's audit trail is visible only to their own admins and managers, never to other tenants. The Messages module logs client emails into the client thread, and that logging is tenant-scoped and audited like every other sensitive action.

8. File Storage & Document Security

All uploaded documents — trip confirmations, passports, contracts, invoices — are stored securely in cloud storage with multiple layers of protection.

FeatureImplementation
Storage ProviderAWS S3 with server-side encryption
Upload MethodPresigned URLs — files go directly to S3, never through application servers
Access ControlPublic/Private flags per file; private files require time-limited signed URLs
URL ExpirationSigned download URLs expire automatically — no permanent access links
Filename SanitizationTimestamp-prefixed filenames prevent path traversal attacks
Content Type ValidationFile type verified before upload authorization
Tenant NamespacingFiles organized by tenant — cross-tenant file access impossible

9. Email Security & Delivery Tracking

Outgoing email communications are secured, tracked, and logged for compliance and deliverability.

FeatureImplementation
Email LoggingEvery outbound email recorded with full content, recipient, status, and timestamp
Delivery TrackingDelivered, Opened, Clicked, and Bounced status tracking
Provider ResponseFull provider response stored for troubleshooting
Error HandlingError codes and messages captured for failed deliveries
Template CustomizationPer-tenant email templates — agencies control their branding and messaging
Notification ControlsEach notification type can be individually enabled/disabled by tenant
Custom Sending DomainAgencies can send from their own verified domain

Client-Facing Email Security

  • Password reset links expire after 1 hour
  • Payment links use cryptographic tokens with expiry enforcement
  • Client portal access via secure, non-guessable tokens
  • Short links with click tracking and optional expiration dates

10. Session & Token Security

Token Types & Lifecycle

Token TypePurposeExpiry
JWT Session TokenUser authenticationConfigurable; refreshed on actions
Password Reset TokenSecure password recovery1 hour
Impersonation TokenPlatform owner support accessShort-lived; JWT-signed
Client Portal TokenClient access to shared contentNon-guessable CUID
Team Invitation TokenNew team member onboardingValidated before use
Authorization TokenTime-limited data access7 days (extendable to 14)
Intake Form TokenClient form submissionSession-based
Short Link CodeBranded URL shorteningOptional expiration

Middleware Security Enforcement

A centralized middleware layer intercepts every request and enforces:

  • Authentication Check — unauthenticated users redirected to login
  • Password Change Enforcement — temporary passwords blocked until changed
  • Terms Acceptance — users must accept current terms before proceeding
  • Profile Completion — incomplete profiles blocked from dashboard
  • Tester Expiry — expired tester accounts redirected to access-expired page
  • Maintenance Mode — platform-wide lockout when maintenance is active

11. Application Security Practices

Input Validation & Data Protection

  • Server-Side Validation — all inputs validated at the API level, not just client-side
  • SQL Injection Prevention — the data layer parameterizes all database queries
  • XSS Protection — framework-level output escaping prevents cross-site scripting
  • Safe Contact Handling — guards prevent accidental blanking of email/phone data
  • Path Sanitization — file upload paths sanitized to prevent directory traversal

API Security

  • Authentication on Every Route — 518 API routes individually validate the server-side session
  • User ID from Session — user identity derived server-side, never from request parameters
  • Tenant Scoping — tenant ID derived from authenticated user, not from request body
  • Rate Limiting — infrastructure-level request rate limiting
  • Error Handling — generic error responses that don't leak internal details

API Key Security (BYOK Model)

Advisors who integrate third-party services (e.g., AI providers, mapping APIs) use a Bring Your Own Key (BYOK) model:

  • API keys are stored encrypted at rest in the database
  • Keys are only decrypted server-side at the moment of use
  • Each advisor manages their own keys — the platform never shares keys between users
  • Key storage is tenant-isolated and role-restricted

Impersonation Safety

  • Only platform owners can generate impersonation tokens
  • Tokens are JWT-signed and short-lived
  • Every impersonation event is audit-logged with both user identities
  • Console logging tracks impersonation sessions

12. Infrastructure & Platform Security

Powered by the Abacus AI Platform: Travel HQ AI's infrastructure is built on and hosted by the Abacus AI Platform — providing enterprise-grade managed hosting, automated scaling, DDoS protection, and managed database services. Abacus AI is listed as the platform's cloud hosting provider in our Privacy Policy (Section 5 — Service Providers).

LayerProviderSecurity Features
Application HostingAbacus AI PlatformManaged infrastructure, automatic scaling, DDoS protection, edge caching
DatabaseManaged Database (via Abacus AI)Encrypted at rest, automated backups, connection pooling, statement timeouts
File StorageAWS S3Server-side encryption, bucket policies, presigned URLs
SSL/TLSAuto-provisioned (via Abacus AI)Automatic renewal, TLS 1.2/1.3, HSTS
DNS & CDNManaged (via Abacus AI)DDoS mitigation, edge caching, automatic failover
Payment ProcessingStripe / External ProvidersExternal redirect model — zero card data on platform (see Section 5)

Abacus AI Infrastructure Benefits

  • Managed Hosting — no self-managed servers; Abacus AI handles provisioning, patching, and uptime
  • DDoS Protection — infrastructure-level protection against distributed denial-of-service attacks
  • Automated Scaling — resources scale automatically based on demand
  • Managed Database — encrypted at rest, automated backups, connection pooling, and statement timeouts managed by the platform
  • SSL/TLS Management — certificates auto-provisioned and auto-renewed
  • Continuous Monitoring — platform-level health monitoring and alerting

Maintenance Mode

The platform includes a maintenance mode system that:

  • Locks out all users (except platform owners) during maintenance
  • Displays estimated completion time to users
  • Applies to both advisor dashboard and client-facing portals
  • Controlled via admin API with immediate effect

Database Security

  • Connection Pooling — max 25 concurrent connections with idle timeout
  • Statement Timeout — 5-second query timeout prevents long-running queries
  • Idle Transaction Timeout — 30-second limit prevents connection leaks
  • Encrypted at Rest — database storage encrypted
  • Automated Backups — regular snapshots for disaster recovery

13. Compliance Summary Matrix

Standard / PracticeStatusDetails
Third-Party Payment Model✅ Zero Card DataExternal redirect to Stripe / host agency — no card data on platform
HTTPS / TLS Enforcement✅ EnforcedTLS 1.2/1.3 with auto-renewed certificates
Data Encryption at Rest✅ AES-256Database and file storage encrypted
Data Encryption in Transit✅ TLSAll traffic encrypted end-to-end
Role-Based Access Control✅ EnforcedDual-layer RBAC across all 518 API routes
Multi-Tenant Isolation✅ Database-LevelTenant ID on every query; zero cross-tenant visibility
Audit Logging✅ ComprehensiveAll sensitive actions with actor, IP, timestamp
Consent Management✅ Full LifecycleImmutable consent records with legal metadata
Session Security✅ JWT / HttpOnlyCryptographically signed, secure cookie storage
Password Security✅ bcryptSalted hashing with forced-change and lockout support
Input Validation✅ Server-SideParameterized queries, XSS protection, path sanitization
Email Security✅ TrackedFull delivery logging with status tracking
File Security✅ S3 + PresignedDirect upload, time-limited access, tenant namespacing
Token Security✅ Time-LimitedAll tokens have defined expiry and validation
Infrastructure✅ Abacus AIManaged hosting, DDoS protection, automated backups

Travel HQ AI • travelhq.ai • The Business Operating System for Travel Advisors

Powered by the Abacus AI Platform • This document was generated from a live platform audit on Thursday, September 10, 2026. All security features listed are built and operational.

© 2026 Tech For Travel Agents™, LLC. All Rights Reserved. | Classification: Prospect & Customer