Errors
All function calls to the Web Service can possibly return an error if a problem occurs while processing your request. When a problem happens, an error code is returned in XML format, like this:
<?xml version="1.0" encoding="utf-8" ?>
<nimbb version="1">
<error>
<code>5</code>
<message>A required parameter is missing.</message>
</error>
</nimbb>
A message is also returned for quick understanding of the problem. After calling our API, it is good practice to verify that no error was returned by the service.
Here is the complete list of error codes:
Go back to
Web Service documentation.