Logo

ERRORS

In this guide, we will explore potential challenges that you might come across and discuss effective strategies for managing them. By addressing these issues, you can significantly enhance the efficiency of your development process.


Error response

If the request has not been successful, you will receive a JSON with the following attributes.

  • Name
    error_code
    Type
    Description

    The error code that has occurred.

  • Name
    message
    Type
    Description

    A message that describes the error.

Example

{
  "error_code": "API_ERROR",
  "message": "Access denied. The API Key is not authorized to do this operation.",
}

Response codes:

Our APIs are governed using standard HTTPs to make it easier to understand.

  • Name
    200 - 201
    Type
    Description

    The request executed had finished successfully.

  • Name
    400 - 412
    Type
    Description

    The request executed finished with an error.

  • Name
    401
    Type
    Description

    The API Key is not authorized to do this operation. Check that your API Key had been correctly configured.

  • Name
    500
    Type
    Description

    Our APIs are currently experiencing issues. Please try again later.