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

POST /todos with an extra field to trigger 422
Experiment with this endpoint