Return a nice error message when users POST instead of PUT to the REST API
The REST API uses the PUT verb to update job metadata. If a user instead uses the POST verb, the API returns a 404.Semantically, this is correct; PUT is idempotent and POST is not, among other reasons (Which you can read here, should you be incli...