Help Center
Troubleshooting
Find solutions to common issues or get help from our community.
Common Issues
Symptom: API requests return 401 Unauthorized error.
Solution:
- Verify the API key is correct and has not expired
- Check that you're using the correct environment (test vs live)
- Ensure the API key has the required permissions
- Regenerate the API key if the issue persists
# Check your API key format
sk_live_... # Live key
sk_test_... # Test keySymptom: You signed up but haven't received the confirmation email.
Solution:
- Check your spam or junk folder
- Verify the email address you entered
- Add noreply@florentin.io to your contacts
- Request a new confirmation email from the login page
- Contact support if you still don't receive it after 15 minutes
Symptom: Your webhook endpoint is not receiving events.
Solution:
- Verify your webhook URL is publicly accessible
- Check that your endpoint returns a 2xx status code
- Ensure your server accepts POST requests
- Check the webhook logs in your Florentin dashboard
- Verify the webhook signature validation is correct
# Test your webhook endpoint
curl -X POST https://your-endpoint.com/webhook \
-H 'Content-Type: application/json' \
-d '{"test": true}'Symptom: Invoices are not generating or showing incorrect amounts.
Solution:
- Ensure all usage events have been recorded
- Check that the billing period is complete
- Verify the customer has a valid payment method
- Review product pricing configuration
- Contact support if amounts seem incorrect
Symptom: API requests return 429 Too Many Requests error.
Solution:
- Check your current rate limit in the response headers
- Implement exponential backoff for retries
- Cache responses where possible
- Contact support to request a rate limit increase
# Rate limit headers
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1640000000Community Support
Connect with other Florentin users and our team.
Still Need Help?
Our support team is here to help you solve any issue.
Average response time: Less than 24 hours
Contact Us