fondo-webhooks-events

Featured

Implement event-driven financial workflows using webhooks from Fondo-connected services: Stripe payment events, Gusto payroll events, and Plaid transactions. Trigger: "fondo webhooks", "fondo events", "stripe payroll webhooks", "financial events".

AI & Automation 2,274 stars 319 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Fondo Webhooks & Events ## Overview Fondo itself does not send webhooks. Instead, build event-driven workflows using webhooks from the same providers Fondo connects to: Stripe (revenue), Gusto (payroll), Plaid (bank transactions), and Mercury (banking). ## Provider Webhooks | Provider | Key Events | Use Case | |----------|-----------|----------| | Stripe | `charge.succeeded`, `invoice.paid` | Revenue tracking, MRR alerts | | Gusto | `payroll.processed`, `employee.created` | Payroll cost alerts, headcount | | Plaid | `transactions.sync`, `item.error` | Expense monitoring | | Mercury | `transaction.created` | Real-time spend tracking | ## Instructions ### Stripe Revenue Webhook ```typescript import Stripe from 'stripe'; const stripe = new Stripe(process.env.STRIPE_API_KEY!); app.post('/webhooks/stripe', express.raw({ type: '*/*' }), (req, res) => { const sig = req.headers['stripe-signature'] as string; const event = stripe.webhooks.constructEvent( req.body, sig, process.env.STRIPE_WEBHOOK_SECRET! ); switch (event.type) { case 'charge.succeeded': const amount = (event.data.object as Stripe.Charge).amount / 100; console.log(`Revenue: $${amount}`); // Update internal dashboard break; case 'invoice.paid': // MRR tracking break; } res.sendStatus(200); }); ``` ### Gusto Payroll Webhook ```typescript // Gusto sends webhooks when payroll is processed app.post('/webhooks/gusto', express.json(), async (req, res) => ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

fondo-install-auth

Set up Fondo account and configure integrations with Gusto, QuickBooks, and bank accounts for automated startup bookkeeping and R&D tax credits. Trigger: "setup fondo", "fondo account", "fondo integrations", "connect fondo".

2,274 Updated today
jeremylongshore
AI & Automation Featured

podium-webhooks-events

Podium webhooks events — business messaging and communication platform integration. Use when working with Podium API for messaging, reviews, or payments. Trigger with phrases like "podium webhooks events", "podium-webhooks-events".

2,274 Updated today
jeremylongshore
AI & Automation Featured

fondo-rate-limits

Manage rate limits for Fondo-connected services including Gusto API, QuickBooks API, Plaid, and Stripe when building parallel integrations. Trigger: "fondo rate limit", "gusto API limits", "QuickBooks throttling".

2,274 Updated today
jeremylongshore
AI & Automation Solid

finta-webhooks-events

Automate Finta pipeline events with Zapier and email triggers. Use when setting up notifications for investor responses, automating follow-up reminders, or syncing events to other tools. Trigger with phrases like "finta automation", "finta notifications", "finta pipeline events", "finta zapier".

2,274 Updated today
jeremylongshore
AI & Automation Featured

fondo-security-basics

Apply security best practices for Fondo including OAuth token management, financial data protection, SOC 2 compliance, and access control. Trigger: "fondo security", "fondo data protection", "fondo SOC 2", "fondo access control".

2,274 Updated today
jeremylongshore