Put Double to work with AI and enterprise-grade automation
Automate smarter with Double and scale with confidence. Zapier is built for enterprise-grade security, compliance, and performance.
- No-code AI automation
- Full audit trails and controls
- SOC 2 and GDPR compliant
- Easy visual workflow builder
- 9,000+ apps, 450+ AI tools
- Free tier available
Join millions worldwide who automate their work using Zapier
Supported triggers and actions
Zapier helps you create workflows that connect your apps to automate repetitive tasks. A trigger is an event that starts a workflow, and an action is an event a Zap performs.
- New Donation
Triggers when a new Donation is created.
Try ItTriggerInstant - New Fundraiser
Triggers when a new Fundraiser is created.
Try ItTriggerInstant - New Donor
Triggers when a new Donor is created.
Try ItTriggerInstant - Updated Recurring Donation
Triggers when a Recurring Donation is updated.
Try ItTriggerInstant
- Updated Donation
Triggers when a Donation is updated.
Try ItTriggerInstant - Updated Fundraiser
Triggers when a Fundraiser is updated.
Try ItTriggerInstant - New Recurring Donation
Triggers when a new Recurring Donation is created.
Try ItTriggerInstant
For builders
Let your AI safely access Double
Go beyond Zap workflows. Install Zapier in your AI to call Double actions directly from your agents—with governance built in. Authenticate once. Revoke access anytime.
Call actions in natural language with Zapier MCP
Act in Double from your AI—no exposed credentials, and you control which actions your AI can touch. One install covers 9,000+ other apps.
Works with
Claude · ChatGPT · Cursor · Any MCP-compatible AI
Work in code with the Zapier SDK
Expose Double actions from backend services, scripts, or agent code. Zapier handles the OAuth and scoped permissions. Access 9,000+ apps, plus thousands more with .fetch().
Install
npm install @zapier/zapier-sdk npm install -D @zapier/zapier-sdk-cli zapier-sdk login # create a Double connection @ https://zapier.com/fr/app/assets/connections
Run an action
// Typescript
import { createZapierSdk } from "@zapier/zapier-sdk";
const zapier = createZapierSdk();
const { data: connection } = await zapier.findFirstConnection({ app: "double", owner: "me" });
await zapier.runAction({
app: 'double',
action: '{actionName}',
connection: connection.id,
input: {
{inputKeyValuePairs}
},
});Direct API calls to raw endpoints through fetch are not yet subject to org-level app and action restrictions.


