A real REST API — 71+ domains, org-scoped, bearer-token authenticated. No fabricated OpenAPI spec here: this is an honest index of what's actually deployed, cross-linked into the full Documentation Portal.
Every organization authenticates with email/password to get a bearer token. There is no separate API-key system — the same token your users get from logging in is what your integration uses.
POST /api/auth/login
Content-Type: application/json
{ "email": "you@yourcompany.com", "password": "••••••••" }
→ 200 OK
{ "accessToken": "eyJhbGciOi...", "user": { "id": "...", "role": "..." } }Send the token as a Bearer Authorization header. Every response is scoped to your organization at the database level — there's no cross-tenant leakage to guard against on your side.
GET /api/crm/leads
Authorization: Bearer <accessToken>
→ 200 OK
[ { "id": "...", "name": "...", "stage": "QUALIFIED", ... }, ... ]Inbound webhook receivers exist for connected providers today (payment gateway events, marketplace callbacks). Outbound event webhooks for your own integrations are on the roadmap — see the Developer Guide for current status rather than assuming general availability.
Login, registration, password reset, session/token issuance.
/api/authUser records, profile, role assignment.
/api/usersTenant/organization records and settings.
/api/organizationsMFA enrollment, security policy, sessions.
/api/securityClients, leads, pipeline stages.
/api/crmEmployee records, leave, approvals.
/api/hrHR management workflows and balances.
/api/hrmsEligible-employee resolution and payroll runs.
/api/payrollInvoices, GST breakdown, payments.
/api/financeProjects, pipeline stages, tasks.
/api/projectsSupport ticket records.
/api/ticketsCross-module activity stream.
/api/timelineZero Manual Reporting -- auto-drafted daily standups.
/api/zmrScheduling, invites, RSVPs.
/api/meetingsChannels and direct messages.
/api/chatOrg comms channel and template config.
/api/communicationsDocument vault and asset library.
/api/file-managerExternal client login, project/invoice/proposal views.
/api/portalDaily/weekly reports and executive summaries.
/api/reportsCourse catalog and enrollment tracking.
/api/learningWorkflow rules and scheduled report jobs.
/api/automationsAttendance tracking.
/api/attendanceApproval chains across modules.
/api/approvalsSkills graph and workload signal.
/api/workforceSocial posts, campaigns, achievements.
/api/socialCalendar events feeding ZMR and meetings.
/api/calendarShared AI provider routing and configuration.
/api/aiAI content generation.
/api/ai-studioChat-based assistant conversations.
/api/ai-assistantManager Copilot activity-filtered alerts.
/api/copilotRetrieval over business memory and knowledge base.
/api/knowledgeCampaign ROI, lead scoring, AR leakage.
/api/revenue-intelligenceLead-to-Paid-to-Support lifecycle tracking.
/api/journeyOrg-level brand knowledge for AI generation.
/api/brand-memoryReal-time activity summarization.
/api/company-pulseBOQ estimation, site progress, material tracking.
/api/constructionDesign stages, architectural drawings.
/api/architectureMood boards, material specifications.
/api/interior-designStructural drawings, site audits.
/api/structuralMaterial testing, engineering documents.
/api/civil-engineeringProperty listings, site visits, bookings.
/api/realestateVendor roster, work orders.
/api/pmcPatients, appointments, prescriptions.
/api/healthcareMedicine inventory, stock ledger.
/api/pharmacyTest orders, lab reports.
/api/laboratoryStudent enrollments, fee invoices.
/api/educationProduction orders, quality inspections.
/api/manufacturingSoftware releases, support incidents.
/api/softwareClient engagements, billing milestones.
/api/professional-servicesClient retainers, creative briefs, SEO tracking.
/api/agencyAd campaigns, media buys.
/api/advertisingISO audits, nonconformances (CAPA).
/api/isoAudit engagements, working papers.
/api/auditingLegal matters, court hearings.
/api/legalGrant pipeline, donor reporting.
/api/ngoShipment tracking, customs documents.
/api/tradeDynamic pricing and pack resolution.
/api/industry-engineCurated pack composition.
/api/industry-packsModule entitlement and marketplace.
/api/modulesPlans, billing cycles.
/api/subscriptionsPayment gateway config and recovery sweeps.
/api/billingSeat/usage quotas.
/api/licensingPublic Knowledge Center articles.
/api/knowledgePublic Documentation Portal pages.
/api/docsPlatform integration configuration.
/api/integrationsInbound webhook receivers for connected providers.
/api/webhooksTenant provisioning, plans, revenue, marketplace review.
/api/superadminPricing config, Knowledge Center CMS, Docs CMS, legal doc editor.
/api/developerNew organization provisioning lifecycle.
/api/tenant-provisioningEmployee-monitoring admin access and audit logs.
/api/monitoringCoupons, discount rules.
/api/commercial-policiesCustom development, marketplace listings, and white-label integrations — talk to the team that builds the platform.