Zum Hauptinhalt springen

Responses and Errors


The Fliz API utilizes standard HTTP response codes to provide feedback on the success or failure of API requests. Understanding these response codes is crucial for developers to effectively integrate and troubleshoot interactions with the Fliz API.

HTTP Response Codes

2xx Range (Success) Codes in this range indicate that the API request was successful and the requested operation was completed as expected.

4xx Range (Client Errors) Codes in this range indicate an error related to the client's request. This could be due to issues like a missing required parameter, a payment failure, or other client-specific issues.

5xx Range (Server Errors) These codes indicate an issue on our servers. Encountering a code in this range signifies an error on our part, and the client's request was not at fault.

Understanding these response codes is crucial for developers to effectively integrate and troubleshoot interactions with the Fliz API.

HTTP Status Code Summary

Status CodeDescription
200 - OKThe request was successful, and everything worked as expected.
400 - Bad RequestThe request was unacceptable, often due to missing a required parameter.
401 - UnauthenticatedThe request lacked valid authentication, often due to an invalid or missing API key.
404 - ForbiddenThe requested resource does not exist.
429 - Too Many RequestsToo many requests were made to the API in a short period. Using an exponential backoff for your requests is recommended.
500 - Internal Server ErrorAn issue occurred on our end, indicating a problem with our servers.

Error Attributes

  • code (string): This field provides a short string indicating the reported error code.
  • message (string): A human-readable message that provides additional details about the error.