← Back to Docs
Last updated: 2026-08-12
Webhooks
Webhooks let InvyMate push events to your system automatically, instead of your integration polling APIs.
Plan availability
- Webhooks are available on plans that include the webhook feature.
Where to configure
- Go to Configuration → Webhooks
- Create one or more endpoints
Quick start
- Create an endpoint and choose the event types you want.
- Save the signing secret when it is shown.
- Verify the destination endpoint.
- Trigger a real event.
- Review delivery history and replay failures if needed.
Webhook events are forward-only: InvyMate sends an event only to endpoints that are active, verified, and subscribed when that event occurs. Enabling, verifying, or changing an endpoint does not send past events.
Delivery history and replay
Webhook delivery history is kept for 7 days. You can replay an event or delivery during that window; after it expires, it is permanently removed.
Typical endpoint fields
- Name
- Destination URL
- Subscribed event types
- Active or inactive state
- Verification status
Current event examples
asset.createdasset.status.changed
Good webhook setup practices
- keep the signing secret in your server-side environment only
- log incoming deliveries so you can diagnose failures quickly
- make receivers idempotent in case the same event is delivered again
- use delivery history in InvyMate when testing changes