You can support this site from as little as $1 a month on Patreon.

The support pays for site hosting and the expansion of this content.

In addition, Patreon Supporters gain access to exclusive online video training courses and ebooks.

Join Now

How to complete the challenge POST /todos (422) title too long

Issue a POST request to /todos with a title longer than the maximum allowed length.

{
  "title": "this title has far too many characters to validate.",
  "doneStatus": true,
  "description": "should trigger a 422 error"
}

The response should be 422 Unprocessable Content.

{
  "errorMessages": [
    "Failed Validation: Maximum allowable length exceeded for title - maximum allowed is 50"
  ]
}

Try it now