Based on the documentation, there are several potential causes for your France calling issue.
Geographic Restrictions Configuration
You can restrict outbound countries through the Retell dashboard or API.(1) To configure via the dashboard:
- Navigate to Phone Numbers in your Retell dashboard
- Click on the phone number you want to configure
- Under Allowed Outbound Countries, add the countries this number should be allowed to call(1)
Changes are saved automatically.(1)
To configure via API, use ISO 3166-1 alpha-2 country codes (e.g., “FR” for France):(1)
curl -X PATCH "https://api.retellai.com/update-phone-number/+14155551234" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"allowed_outbound_country_list": ["US", "CA", "FR"]
}'
(1)
Important Limitation for Retell-Purchased Numbers
The documentation indicates that if you’re using Retell-purchased numbers, they can only call US numbers.(2) This is a critical limitation that may explain why your calls to France are blocked, even though they worked yesterday.
Sanctioned Countries Check
The following countries are always blocked regardless of configuration: Cuba (CU), Iran (IR), North Korea (KP), Syria (SY), Russia (RU), Belarus (BY), and Venezuela (VE).(1) France is not on this list, so this shouldn’t be the issue.
Disconnection Reasons to Check
Common outbound call disconnection reasons include:(3)
invalid_destination - Destination phone number is invalid
dial_failed - Dialing failed with no or unknown SIP error code
telephony_provider_permission_denied - SIP trunk credentials not authenticated
telephony_provider_unavailable - Telephony provider is unavailable(3)
Recommended Actions
- Verify you’re using the correct country code “FR” (not “France”) in your allowed outbound countries configuration
- Check if you’re using Retell-purchased numbers, which may only support US destinations
- Consider using custom telephony (Twilio/Telnyx) if you need international calling capabilities
- Contact support at support@retellai.com with your specific phone number and org ID for account-level investigation
The sudden change from yesterday suggests either a configuration change or a service-level restriction that may require support team investigation.