setup-zoom-webhooks Skill
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection. Published by anthropics in knowledge-work-plugins.
What is setup-zoom-webhooks Skill?
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection. Published by anthropics in knowledge-work-plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using knowledge-work-plugins
Technical details
- Install or run with Copy skill directory
When to use setup-zoom-webhooks Skill
- Use it for developers using knowledge-work-plugins.
Built with
Editorial notes
Source
- Creator: anthropics
- Repository: anthropics/knowledge-work-plugins
- Skill file: partner-built/zoom-plugin/skills/webhooks/SKILL.md
What it does
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection.
Skill instructions
/setup-zoom-webhooks Background reference for Zoom event delivery over HTTP. Prefer workflow skills first, then use this file for verification, subscription, and delivery details. Prerequisites - Zoom app with Event Subscriptions enabled - HTTPS endpoint to receive webhooks - Webhook secret token for verification Need help with authentication? See the zoom-oauth skill for OAuth setup. Quick Start javascript // Express.js webhook handler const crypto = require('crypto'); // Capture raw body for signature verification (avoid re-serializing JSON). app.use(require('express').json({ verify: (req, res, buf) = { req.rawBody = buf; } })); app.post('/webhook', (req, res) = { // Verify webhook signature const signature = req.headers['x-zm-signature']; const timestamp = req.headers['x-zm-request-timestamp']; const body = req.rawBody ? req.rawBody.toString('utf8') : JSON.stringify(req.body); const payload = v0:${timestamp}:${body}; const hash = crypto.createHmac('sha256', WEBHOOKSECRET) .update(pa
Explore related resources
Frequently asked questions
What is setup-zoom-webhooks?
setup-zoom-webhooks is a open-source AI agent skill with Copy skill directory. Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection.
Who is setup-zoom-webhooks best for?
setup-zoom-webhooks is best for reusing agent instructions, scripts, and references.
How do I install setup-zoom-webhooks?
Install or run setup-zoom-webhooks using Copy skill directory. Check setup-zoom-webhooks for the latest setup command.
Is setup-zoom-webhooks actively maintained?
setup-zoom-webhooks may need a closer maintenance check before production use.
Auto-fetched from GitHub.