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.