Integrations

Every integration. Included.

The others charge extra for the CRM you already own. On SignFlow Team, everything below is turned on the moment your workspace is created — no upgrade, no add-on checkbox, no sales call.

CRM

2 integrations
Popular
HubSpot
Send agreements from any deal, contact or company record. Status writes back in real time.
  • Sidebar app on deal records
  • Auto-fill from HubSpot properties
  • Stage moves on sign / pay
  • Custom event timeline
Popular
Salesforce
Native Lightning component. Send from Opportunity, sync signed PDF back to Files.
  • Lightning sidebar
  • Opportunity → agreement mapping
  • Signed PDF into Files
  • Flow triggers on completion

Comms

2 integrations
Popular
Slack
Channel or DM alerts when an agreement is opened, signed, or the deposit lands.
  • Per-workspace channel routing
  • @mention the owner on sign
  • Emoji reactions for open / sign / pay
Microsoft Teams
Same event stream in a Teams channel or personal chat.
  • Adaptive cards
  • Deep-links back to the agreement

Storage

3 integrations
Google Drive
Import a Google Doc as an editable agreement. Sync the signed PDF back.
  • OAuth once, use forever
  • Preserves headings, tables, images
OneDrive
Same round-trip against SharePoint and OneDrive libraries.
  • Personal + shared libraries
  • SharePoint folder routing
Dropbox
Signed PDFs and audit trails filed automatically into your team folder.
  • Auto-file by template
  • Retention-friendly folder scheme

Automation

2 integrations
Zapier
1,200+ downstream apps. Triggers on every agreement lifecycle event.
  • Triggers: sent, opened, signed, paid, declined
  • Actions: create, send, void
Make
Visual workflows against the same event set as Zapier.
  • Handles multi-step flows without code

Developer

3 integrations
Webhooks
Raw JSON delivered to your endpoint with HMAC signature.
  • Signed payloads (SHA-256)
  • Automatic retries with backoff
  • Delivery log in the workspace
Popular
REST API + SDK
Full public REST API, typed SDKs for TypeScript, Python, Ruby.
  • Send from any backend
  • Embedded signing (iframe or JS SDK)
  • OAuth2 for third-party apps
SCIM
Provision and deprovision seats from Okta, Entra ID, JumpCloud.
  • Business tier
  • Auto-suspend on offboard
Developer-first, not developer-only

A REST API you can read without a headache.

Same endpoints power our web app, HubSpot sidebar, and Salesforce Lightning component. If it’s in the product, it’s in the API.

// Send an agreement in 6 lines
import SignFlow from "@salescollab/handshake";
const hs = new SignFlow({ apiKey: process.env.HS_KEY });

await hs.agreements.send({
  templateId: "tpl_starter_msa",
  signer: { email: "jane@acme.com", locale: "en-GB" },
  variables: { amount: 4500, currency: "GBP" },
});