webhooks
Installation
SKILL.md
Webhooks
Receive real-time HTTP notifications when renders complete, files finish processing, or other asynchronous events occur in your Editframe account.
Quick Start
// 1. Create an API key with webhook configuration
const apiKey = await createApiKey({
name: "My App",
webhookUrl: "https://your-app.com/webhooks/editframe",
webhookEvents: ["render.completed", "render.failed"]
});
// 2. Store the webhook secret for signature verification
const webhookSecret = apiKey.webhook_secret;