Handling Common API Errors
The Checklick API may return errors that you need to handle. Common errors include: 1. 400 Bad Request: Invalid JSON or missing required fields. Check your payload format. Example: Ensure person_id is included in a POST /v2/evaluations. 2. 401 Unauthorized: Invalid or missing API key. Verify your Authorization: Bearer YOUR_API_KEY header. 3. 403 Forbidden: Insufficient permissions. Ensure your API key matches the Organization-Id. 4. 429 Too Many Requests: Exceeded rate limit (100 requests/min). Wait and retry. 5. Use GET /v2/errors to retrieve error details for debugging. Example: curl -X GET https://api.checklick.com/v2/errors -H "Authorization: Bearer YOUR_API_KEY" -H "Organization-Id: YOUR_ORG_ID". Quick tips: * Log errors for analysis. * Refer to https://api.checklick.com/docs for error codes. * Contact support@checklick.com for persistent issues.