The provided authentication credentials are invalid or missing. This could be due to an expired token, incorrect username/password, or missing required headers.
Verify your authentication token or credentials. Ensure they are correctly included in the request headers. If using session-based authentication, ensure the session is still active.
The authenticated user does not have permission to access the requested resource or perform the requested action.
Ensure the user account has the appropriate roles and permissions assigned. Consult your system administrator if you believe you should have access.
The requested resource (e.g., API endpoint, page, file) could not be found on the server.
Double-check the URL for any typos. Ensure the resource you are trying to access actually exists and is accessible at the specified path.
An unexpected condition occurred on the server, preventing it from fulfilling the request. This is a generic server-side error.
This error usually indicates a problem on our end. Please try again later. If the problem persists, contact support and provide the request details.
The server cannot process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
Review the request payload and parameters. Ensure all required fields are present, data types are correct, and the data conforms to the API's specifications. Check the specific error message returned for details on which validation failed.
The request could not be completed because of a conflict with the current state of the resource. This typically occurs when trying to create a resource that already exists.
Check if the resource already exists before attempting to create it. If updating, ensure you are working with the latest version of the resource. Consider using idempotency keys if applicable.
The user has sent too many requests in a given amount of time (rate limiting).
Wait for the specified retry-after period before making further requests. Implement backoff strategies in your application. Check your API usage plan for rate limit details.