-
Notifications
You must be signed in to change notification settings - Fork 0
Integrations
External services GDX talks to. Everything here is optional — the app runs
without any of them, and each one lights up when its keys are configured (see
Configuration Reference; .env.template documents
every variable).
Two-way sync with QuickBooks Online: customers, invoices, payments, and expenses/bills.
- Pull — scheduled syncs plus Intuit webhooks on entity changes; incoming customers are matched to local records by fuzzy name + phone.
- Push — locally created/edited invoices are pushed back on a short cycle (a dirty flag marks what needs pushing).
-
Setup — an OAuth connect flow from the QuickBooks page (server-side
token exchange; tokens stored encrypted). Env:
QB_CLIENT_ID,QB_CLIENT_SECRET,QB_REDIRECT_URI,QB_ENVIRONMENT,QB_WEBHOOK_VERIFIER_TOKEN. - Budgets read the QB P&L for budget-vs-actual comparisons.
Online payments for invoices — customers pay via Stripe Checkout from a shared
invoice link or the Customer Portal, which also supports
saved payment methods and ACH with micro-deposit verification. Stripe
Connect onboarding (Express) is available for routing payments to a
connected account. Webhooks are signature-verified. Env: STRIPE_SECRET_KEY,
STRIPE_PUBLISHABLE_KEY, STRIPE_WEBHOOK_SECRET.
VoIP integration: inbound/outbound call log, SMS threads, voicemail, faxes, click-to-call, and a cold-leads list of missed callers.
- Setup — paste your Phone.com API token in Settings → Integrations; the app validates it, discovers your extensions, and stores it encrypted. Pick a default extension/caller ID.
- Webhooks + nightly reconciliation keep history complete; a nightly job pushes your customers to Phone.com as contacts (desk-phone caller ID shows names), and webhook URL secrets rotate weekly automatically.
- Outbound email — any SMTP provider, configured per tenant in Settings (with a send-test button). The system sends estimate/invoice emails, appointment reminders, review requests, payment reminders, and portal magic links through it.
- Outlook / Microsoft 365 — optional per-employee mailbox sync via Microsoft Graph OAuth: the Inbox module shows synced email, with webhook subscriptions renewed automatically and a 30-minute polling fallback.
Geocoding, drive-time estimates between jobs, route optimization, and service-area (polygon) checks on the dispatch side. Optional API key; the dispatch board works without it, minus traffic-aware features.
AI assists (quick estimates, line-item suggestions, message drafts) call any
OpenAI-compatible endpoint — a local vLLM/Ollama/LocalAI works. Configure
AI_PROVIDER_URL / AI_PROVIDER_MODEL / AI_PROVIDER_KEY, or set a
tenant-specific key in Admin → AI Settings (stored encrypted, validated on
save). Without a provider, every AI feature degrades gracefully to keyword
matching or built-in templates.
Subscribe your own endpoints to app events: job.* (created/updated/
completed/cancelled), estimate.* (sent/accepted/declined), invoice.*
(created/sent/paid/overdue), customer.*, payment.*, appointment.*.
Managed under Admin → Webhooks, with a test-send button.
Celery beat drives the recurring machinery — hourly appointment-reminder
scans, daily recurring-job generation, QuickBooks sync dispatch every 5
minutes, nightly Phone.com syncs/stats, Outlook subscription renewals, GPS
location pruning, estimate-draft cleanup, forecast measurement snapshots, and
customer rolling-volume refreshes. Two worker queues (priority:high for
user-facing sends, priority:low for batch work) — see
Architecture.
- Configuration Reference — the env vars that turn each of these on.