Overview#
Easyteam provides structured error responses and recovery mechanisms for both client-side and server-side integrations. Understanding these patterns will help you build resilient and user-friendly applications.Common Error Types#
Errors can be related to either wrong permissions, wrong usage or other edge cases.| Error Category | Common Scenarios | Recommended Action |
|---|
| Authentication | All actions | Refresh authentication token or have user log in again |
| Geofencing | Employee unable to perform actions from current location | |
| Network | Components show loading state indefinitely | |
| Rate Limiting | Bulk operations failing | Add delay to your API calls |
| Permission | Manager can't edit employee schedules | Verify user's role and permissions |
| Configuration | Components do not load | An error with your partner settings, permissions or configuration |
| Payroll | Payroll sync not working | Payroll settings were changed by the user or payroll integration key is invalid |
Handling API Response Errors#
When making direct API calls, ensure proper error handling.Need help with error handling? Reach out to our team for guidance.