Known Issues

405 Status Code
When a method is not allowed on a resource, 404 is returned instead of a proper 405 status. For example, the response below should be a 405, instead of incorrectly reporting that the resource is not found.
POST https://app.jobcast.net/api/v1.0/countries/42 HTTP/1.1
Host: app.jobcast.net
Content-Length: 0
            
HTTP/1.1 404 Not Found
Content-Type: application/json; charset=utf-8
Content-Length: 87

{"error":{"messages":["Resource /api/v1.0/countries/42 not found."],"type":"NotFound"}}
            
Non SSL Requests
Non SSL requests currently aren't rejected. In the future, they will be rejected so please don't rely on non SSL.