/
Generic error codes

Generic error codes

Return codes

May of our error codes are generic, and are handled by the same procedures.

List

  • 0 : success

  • 1 - 9 : request errors

  • 10+ : soft errors

  • 99 : hard error


Success

Code : 0

HTTP code : 200

Everything is fine !


Request errors

Those errors are generic. They're validating the request and its parameters.


Invalid URL

Code : 1

HTTP code : 404

Check your URL syntax.


Forbidden IP

Code : 2

HTTP code : 403

Your IP is not allowed. Contact us if we need to update our firewall (but it's better to anticipate).


Connexion closed

Code : 3

HTTP code : 500

The connexion has been closed before being able to reply.


Missing token

Code : 4

HTTP code : 499

A token is required to access this service.


Invalid token

Code : 5

HTTP code : 498

The token is not valid.


Permission denied

Code : 6

HTTP code : 401

The token hasn't the required accreditation level.


Parameters problem

Code : 7

HTTP code : 422

There is something wrong with the parameters you sent. They may be missing or malformed ; see the message for more information.


Soft errors

Code : 10+

HTTP code : 409

Those errors depend on the services to call. They're listed on their dedicated pages.


Hard errors

Code : 99

HTTP code : 500

Those are application malfunction. Contact us if it occurs.

Related content