Log In

Beyond the HTTP status codes defined in each endpoint response, server can respond with a few other status codes.

404 Not Found - Defined for most of our endpoints. However, server will also respond with this code if requested URI does not exist. If that's the case, response body will contain "code" property with a value of ERROR_ENDPOINT_NOT_FOUND.

405 Method Not Allowed - Unsupported request method on resource, for example POST instead of GET on a URI.

415 Unsupported Content Type - Our server refuses to accept the request because the payload format is in an unsupported format. Ensure Content-Type: application/json is set in request header unless specified otherwise in parameters description.