Dismiss
Announcing Stack Overflow Documentation

We started with Q&A. Technical documentation is next, and we need your help.

Whether you're a beginner or an experienced developer, you can contribute.

Sign up and start helping → Learn more about Documentation →

I use https://github.com/typicode/json-server as my server and my database looks like this

{
  "students": [
    {
      "id": 1,
      "title": "aaa"
    },
    {
      "id": 2,
      "title": "bbb"
    },
    {
      "id": 3,
      "title": "ccc"
    }
  ]
}

I can update one object by PUT on /students/{id} where body looks like

{
    "title": "ddd"
}

but I can't find the way to update few ids at one request.

share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.