πͺWebhooks
How Webhooks Work
{
"config": { ... },
"image_url": "https://example.com/room.jpg",
"variation_count": 3,
"webhook_url": "https://your-app.com/webhooks/renders"
}Variation Webhook Response Types
`Done` response schema
{
"render_id": "rnd_abc123", // the parent render id
"variation_id": "var_xyz789",
"variation_type": "staging",
"base_variation_id": "var_removal123", // if using a base variation from a removal
"timestamp": 1634567890123,
"event_type": "done",
"result": {
"url":"https://results.example.com/image.jpg",
"optimized_url":"https://results.example.com/image_optimized.webp",
"thumbnail_url":"https://results.example.com/image_thumb.jpg"
}
}`Error` response schema
Analysis Webhook Response Types
Best Practices
Testing Webhooks
Authenticating Webhooks
How HMAC Works
Setting Up Webhook Authentication
Last updated