> appfolio-webhooks-events
Handle AppFolio webhook events for property management notifications. Trigger: "appfolio webhook".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/appfolio-webhooks-events?format=md"appfolio webhooks events | sed 's/\b(.)/\u\1/g'
Overview
AppFolio Stack supports webhooks for lease, payment, and maintenance events.
Webhook Handler
import express from "express";
import crypto from "crypto";
const router = express.Router();
router.post("/webhooks/appfolio", express.raw({ type: "application/json" }), (req, res) => {
const signature = req.headers["x-appfolio-signature"] as string;
const expected = crypto.createHmac("sha256", process.env.APPFOLIO_WEBHOOK_SECRET!)
.update(req.body).digest("hex");
if (!crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expected))) {
return res.status(401).json({ error: "Invalid signature" });
}
const event = JSON.parse(req.body.toString());
console.log(\`Event: \${event.type} — \${JSON.stringify(event.data)}\`);
res.status(200).json({ received: true });
});
Event Types
| Event | Trigger | Use Case |
|---|---|---|
lease.created | New lease signed | Update CRM |
lease.expired | Lease ended | Trigger renewal workflow |
payment.received | Rent paid | Update accounting |
maintenance.created | Work order filed | Dispatch vendor |
Resources
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".