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) extra

Issue a POST request to /todos with a field that is not part of the todo schema.

{
  "title": "create new todo",
  "doneStatus": false,
  "description": "created via API Challenges",
  "extra": "not part of the schema"
}

The response should be 422 Unprocessable Content because the payload is syntactically valid, but the todo data cannot be processed as a todo.

Try it now