222 - Hosting Service Authentication Error¶
| API Error Code | 222 | 
| HTTP Status Code | HTTP 403 Forbidden | 
| Error Text | There was an error authorizing with a service. | 
| Description | There was an error authenticating with a hosting service. The specific reason it failed is provided in reason. | 
Examples¶
application/json¶
{
  "err": {
    "code": 222, 
    "msg": "There was an error authorizing with a service."
  }, 
  "reason": "The username was invalid.", 
  "stat": "fail"
}
application/xml¶
<?xml version="1.0" encoding="utf-8"?>
<rsp>
 <stat>fail</stat>
 <reason>The username was invalid.</reason>
 <err>
  <msg>There was an error authorizing with a service.</msg>
  <code>222</code>
 </err>
</rsp>
