Skip to main content

SaaS Connectors

Connect to 100+ SaaS platforms and sync data directly into your pipeline. SaaS connectors use OAuth authentication and scheduled API polling to fetch data from external systems.

No Agent Required

SaaS connectors connect directly via OAuth or API keys. You don't need to deploy agents in your network. SchemaBounce handles the connection securely.

Supported Connectors

See the full Connector Reference for detailed specs on all 100+ connectors.

CategoryConnectors
CRMSalesforce, HubSpot, Pipedrive, Zoho CRM, Freshsales
E-commerceShopify, WooCommerce, BigCommerce
PaymentsStripe, Square, Chargebee
AnalyticsGoogle Analytics, Mixpanel, Amplitude, Segment
Project ManagementJira, Asana, Monday, Linear, ClickUp, Trello, Azure DevOps
SupportZendesk, Freshdesk, ServiceNow (coming soon)
CommunicationSlack, Twilio, Intercom, SendGrid
MarketingMailchimp, Google Ads, Facebook Ads, LinkedIn Ads, Klaviyo
AccountingQuickBooks, Xero
SpreadsheetsGoogle Sheets, Airtable
Dev ToolsGitHub, GitLab, Bitbucket, Datadog
Cloud StorageGoogle Drive, Dropbox, OneDrive, Notion
Social MediaInstagram, Twitter / X, YouTube
HRGreenhouse

Salesforce Connector

PropertyValue
AuthenticationOAuth 2.0 with PKCE
Rate Limit100,000 API calls per 24hrs (Enterprise)
Min Sync Interval5 minutes
Sync ModeIncremental (via LastModifiedDate SOQL filter)
ObjectsAccount, Contact, Lead, Opportunity, Custom Objects
{
"connector": "salesforce",
"name": "Production Salesforce",
"config": {
"instance_url": "https://yourorg.salesforce.com",
"objects": ["Account", "Contact", "Lead", "Opportunity"],
"sync_interval": "15m",
"incremental": true
}
}

HubSpot Connector

PropertyValue
AuthenticationOAuth 2.0 or API Key
Rate Limit250,000 requests per 24hrs (OAuth apps)
Min Sync Interval1 minute (safe for all plans)
Sync ModeIncremental with cursor pagination
ObjectsContacts, Companies, Deals, Tickets

Shopify Connector

PropertyValue
AuthenticationOAuth 2.0 (no refresh token needed)
Sync ModeFull refresh or webhook-triggered
ObjectsProducts, Orders, Customers, Inventory
note

For real-time Shopify updates, combine with Inbound Webhooks to receive events instantly when orders are placed.

Authentication Methods

OAuth 2.0 (recommended): standard authorization code flow with automatic token refresh. Used by Salesforce, HubSpot, Shopify, and Google.

API Key (simpler setup): direct API key authentication for services that support it. Used by Stripe, HubSpot (alternative), and Zendesk.

tip

All credentials are encrypted at rest using AES-256-GCM with envelope encryption. Each workspace has its own Key Encryption Key (KEK).

Sync Modes

Full Refresh: fetches all records on every sync. Best for small datasets or when you need guaranteed completeness.

Incremental: only fetches records modified since the last sync. Much faster for large datasets. Uses cursor or timestamp-based tracking.