Skip to content

Errors handling

Errors handling is essential to ensure the robustness of your integrations with the API.

API request response codes can be:

  • 200: Success, no error to handle.
  • 201: Resource created.
  • 401: Unauthorized.
  • 403: Problem with the request data, check the response for details.
  • 404: Resource not found.
  • 409: Resource already exists.

Error response structure

The error response is a JSON object containing:

  • details: Technical error code.
  • message: Message explaining the error.
json
{
  "details": "INCORRECT_SIGNAL",
  "message": "The signal is not available."
}