Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.digifist.com/llms.txt

Use this file to discover all available pages before exploring further.

The Developer Reference covers the technical internals of the Galantis platform. It is intended for engineers integrating with Galantis, building on top of its infrastructure, troubleshooting data flow issues, or evaluating the platform’s architecture. Merchant-facing configuration is documented in the feature sections — Campaigns, Automations, Catalog, and so on. This section documents the system underneath those features: how the application is structured, how authentication tokens are managed, which APIs Galantis calls and exposes, what webhooks it registers and receives, and how internal events flow between components.

What this section covers

Architecture

Stack overview, multi-tenant model, queue layer, real-time broadcasting, and data storage patterns.

Authentication

Shopify OAuth, Meta OAuth, internal session-based auth, and token storage.

WhatsApp API

All Meta Cloud API endpoints Galantis calls — message sending, template management, media upload, and catalog.

Shopify API

Shopify Admin GraphQL API usage — data fetching, webhook management, and billing.

Webhooks Reference

Complete payload reference for all registered Shopify and Meta webhooks.

Domain Events

Internal domain events — Shopify-triggered events, automation trigger events, and real-time broadcast events.

Technology stack summary

LayerTechnology
Application frameworkLaravel 12
TenancyStancl/Tenancy (isolated schema per merchant)
FrontendInertia.js + React
QueueRedis + Laravel Horizon
Real-timeLaravel Reverb
DatabasePostgreSQL (with JSONB for structured flexible data)
Shopify API clientShopifySdkService (Admin GraphQL)
Meta API clientMetaGraphClient (Graph API v23.0)
AI frameworkLarAgent
PermissionsSpatie Laravel Permission

Audience

This section assumes familiarity with:
  • Laravel application architecture
  • REST and GraphQL APIs
  • Webhook-based event systems
  • OAuth 2.0 token exchange flows
  • Multi-tenant SaaS infrastructure patterns
Merchants looking for configuration guidance should use the feature-specific documentation sections rather than the Developer Reference.