Advanced Webhooks
Advanced webhook configuration and management.
Webhook Retry Configuration
curl -X PUT https://dev.auxcore.net/api/v1/webhooks/webhook_123 \
-d '{
"retryConfig": {
"maxRetries": 5,
"retrySchedule": [60, 300, 900, 3600, 86400]
}
}'
Webhook Filtering
Subscribe to specific event patterns:
curl -X POST https://dev.auxcore.net/api/v1/webhooks \
-d '{
"url": "https://your-app.com/webhook",
"events": ["transaction.*", "subscription.payment_failed"],
"filters": {
"amount_gt": 100.00
}
}'
Webhook Logs
View webhook delivery history:
curl https://dev.auxcore.net/api/v1/webhooks/webhook_123/logs
Need help? Contact support@auxvault.com