How webhook delivery works
When an event occurs in your Rise account, our system immediately begins the delivery process:1
Event triggered
A payment, deposit, or other action occurs in your Rise account
2
Webhook queued
Event is added to the delivery queue for each subscribed webhook endpoint
3
HTTP POST sent
Webhook payload is delivered to your endpoint via HTTP POST request
4
Response evaluated
Your endpoint’s response determines whether delivery was successful
5
Success or retry
Successful deliveries are logged; failures trigger the retry mechanism
Delivery expectations
Response requirements
Your webhook endpoint should:Respond quickly
Return a response within 10 seconds to avoid timeout
Return 2xx status
Any status code from 200-299 indicates successful delivery
Acknowledge receipt
Send a simple response like
{"received": true}
Handle duplicates
Process the same event multiple times safely (idempotency)
What Rise considers successful
Rise considers a webhook delivery successful when:- Your endpoint returns HTTP status 200-299
- The response is received within 10 seconds
- The connection completes without network errors
What triggers a retry
Rise will retry webhook deliveries when:- Your endpoint returns HTTP status 400-599
- The request times out after 10 seconds
- Network connection fails or is refused
- DNS resolution fails for your endpoint
Retry policy
Rise implements an exponential backoff retry strategy to handle temporary failures gracefully.Retry schedule
When a delivery fails, Rise will retry according to this schedule:First retry
First retry
When: After the initial failure
Wait time: 1 minute (60 seconds)
Purpose: Allow brief recovery time for temporary issues
Second retry
Second retry
When: After first retry fails
Wait time: 2 minutes (120 seconds)
Purpose: Handle longer recovery periods
Final retry
Final retry
When: After second retry fails
Wait time: 5 minutes (300 seconds)
Purpose: Maximum retry attempt with extended delay
Retry timing: Rise waits exactly 10 seconds before initiating each retry attempt. This consistent delay applies to all retry attempts and helps ensure your endpoint has adequate time to recover from temporary issues.
Exponential backoff benefits
Reduces server load
Gives your endpoint time to recover from issues
Handles temporary issues
Network glitches, brief downtime, or deployments
Prevents cascading failures
Avoids overwhelming already struggling endpoints
Maximizes delivery success
Multiple attempts significantly increase reliability
Delivery status tracking
Every webhook delivery is tracked and recorded for monitoring and debugging.Delivery states
- Pending
- Sending
- Delivered
- Failed
- Retrying
Status: Queued for deliveryThe webhook event has been created and is waiting in the delivery queue. This is the initial state before any delivery attempts.
Viewing delivery history
Access delivery history through your webhook details page in the Rise app:1
Navigate to webhook settings
Go to the Developer section and click on Webhooks
2
Select your webhook
Click on the webhook you want to monitor
3
View delivery history
Click the “Delivery History” tab to see all delivery attempts
4
Filter and analyze
Use filters to focus on successful, failed, or pending deliveries
Optimizing your endpoint
Follow these practices to ensure reliable webhook delivery:Response time optimization
- Good practice
- Bad practice
Idempotency handling
Design your webhook handlers to safely process duplicate events:Error handling best practices
Monitoring delivery performance
Track your webhook delivery metrics to maintain reliability:Key metrics to monitor
Success rate
Target: >99% first-attempt success ratePercentage of deliveries that succeed without requiring retries
Response time
Target: <2 seconds averageHow quickly your endpoint responds to webhook requests
Retry rate
Target: <5% of deliveriesPercentage of deliveries requiring retry attempts
Final failure rate
Target: <0.1% of deliveriesPercentage of deliveries that ultimately fail after all retries
Delivery limits and quotas
Rise implements reasonable limits to ensure system stability:Rate limits
Delivery rate
Limit: Reasonable per-endpoint rateMaximum webhook deliveries per second per endpoint
Burst allowance
Limit: Short burst capacityTemporary higher rate for event spikes
Cooldown period
Limit: Recovery timeBrief pause between burst periods
Retry and storage limits
- Maximum retries: 3 attempts per webhook delivery
- Retry window: Approximately 8 minutes total retry period
- Delivery history: 30 days of delivery records stored
- Event retention: 7 days of event data available for redelivery
What’s next?
Now that you understand webhook delivery mechanics:Testing Strategies
Learn how to test your delivery optimization and error handling
Monitoring Guide
Deep dive into delivery tracking and performance analysis
Troubleshooting
Advanced troubleshooting techniques for delivery issues
Security Best Practices
Review security considerations for reliable delivery
Performance tip: The fastest webhook is one that responds immediately and processes asynchronously. Your users will thank you for the responsiveness, and Rise will thank you for the reliability.