Webhook Events
Reference for webhook event types
Webhook events sent by Limitry.
Event Types
quota.threshold_exceeded
Sent when a quota threshold is crossed.
{
"event": "quota.threshold_exceeded",
"quota": {
"id": "quota_123",
"customerId": "customer_123",
"limit": 1000,
"usage": 800
},
"customerId": "customer_123",
"usage": {
"current": 800,
"limit": 1000,
"percentage": 80
}
}Next Steps
- Webhooks - Set up webhooks
- Webhook Handling Example - Handle webhooks