Skip to main content

Connector Ecosystem — Overview

BizOSaaS is designed to act as a central intelligence hub for all your business data. Our connector architecture lets any business software — from ERP to CRM to E-Commerce — be linked in minutes, with its data immediately available to AI Agents for automation, insights, and reporting.

Available Connector Categories

CategoryConnectors
💼 Accounting & FinanceZoho Books, QuickBooks Online, Freshbooks, Tally Prime, Xero
🏭 ERPSAP Business One, ERPNext, Microsoft Dynamics 365
📣 CRMZoho CRM, HubSpot CRM, Pipedrive
🛒 E-CommerceShopify, WooCommerce, Wix, Amazon Seller
🎯 MarketingGoogle Ads, Facebook Ads, LinkedIn Ads, Mailchimp
💬 SupportZendesk, Freshdesk, Intercom

How Connectors Work

Each connector is implemented as a module inheriting from the base ConnectorRegistry class in apps/ai-service/connectors/. This provides:

  • authenticate() — OAuth 2.0 or API Key verification
  • sync_data(entity) — Background sync of specific data entities (Contacts, Orders, Invoices, etc.)
  • perform_action(action, payload) — Direct write-back to the target platform (Create Invoice, Update Deal, etc.)
  • get_schema() — Returns the data schema for AI Agent awareness

General Prerequisites

To connect any integration, you typically need:

  1. API Key or OAuth App credentials from the third-party developer portal
  2. Redirect URI (for OAuth): https://api.bizoholic.com/api/auth/callback/[connector_slug]
  3. Scopes: A minimal list of permissions (described in each guide below)