Response codes 1 Successfull HTTP status codes 2 Failed HTTP status codes 3 Other HTTP status codes Successfull HTTP status codes 200OKThe request is processed and the result is returned in the response body. BodyObjectapplication/json Failed HTTP status codes 400Bad requestThe request is invalid due to wrong parameters. BodyAn error messageHow to fixEnsure that required parameters are provided with correct type. 401UnauthorizedThe authentication failed. BodyAn error messageHow to fixEnsure to provide a valid session ID and/or a well formed authorization header. 405Method Not AllowedThe submitted request / endpoint does not exist. BodyAn error messageHow to fixEnsure that the URL request is correct, called with the correct method, with required parameters if any. 406Not AcceptableThe body request is not in JSON. How to fixEnsure to encode the fields in JSON and/or define the application/json content type in the header. Other HTTP status codes The API web server can return also all kind of HTTP codes for errors. Learn more about http codes