Resend SMS
Retry failed SMS messages intelligently with preserved original content, sender ID, and recipient information. Credits only deducted on successful delivery.
Original Message Preserved
Resend with exact same sender ID, content, and recipient - no reconfiguration needed
Credit Safety
Credits only deducted on successful retry - failed resends don't cost you
Smart Retry Logic
Automatic retry scheduling with configurable intervals and max attempts
Resend Analytics
Track resend success rates and identify problematic messages
Authentication Required
Resend Policy
78%
First retry success rate
3.2m
From failure to success
5
Per message lifetime
48h
Message valid for retry
Request Body
{"messageId": "exa_api_123456789_abc123def","smsId": "clxyz123abc"}
Response
{"success": true,"message": "SMS resent successfully","data": {"messageId": "exa_resend_123456789_xyz789","originalMessageId": "exa_api_123456789_abc123def","status": "delivered","recipient": "233555539152","senderId": "YourBrand","segments": 1,"cost": 1,"resendAttempt": 2,"deliveredAt": "2024-01-15T10:35:00Z"}}
Recommended Retry Strategy
Initial retry after failure
Second attempt with longer delay
Third attempt
Fourth attempt
Final attempt before expiry
When to Resend
Network Failure
Carrier temporarily unavailable - automatic retry recommended
Queue Timeout
Message expired in queue - manual resend required
Provider Rejection
Check error code before resending
Implementation Examples
curl -X POST 'https://api.sendexa.co/v1/sms/resend' \-H 'Content-Type: application/json' \-H 'Authorization: Basic YOUR_BASE64_CREDENTIALS' \-d '{"messageId": "exa_api_123456789_abc123def"}'
Resend Success Rates by Attempt
Resend Best Practices
- Implement exponential backoff with increasing delays between retries
- Differentiate between retryable and non-retryable errors
- Set maximum retry attempts (5 is recommended) to avoid infinite loops
- Use scheduled resends for network issues, immediate resends for queue timeouts
- Track resend attempts to avoid duplicate retries
- Consider time of day when scheduling retries (avoid midnight retries)
- Monitor resend success rates to optimize your retry strategy