Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 346 Bytes

02-update-movie.md

File metadata and controls

26 lines (21 loc) · 346 Bytes

UpdateMovie

Request

POST localhost:3001/api/updateMovie
{
    "movieId":"62e7a394d93370f523bdfd7c", //mandatory primary key

    //fields to update
    "title": "RRR (2022)",
    "countries":["INDIA"]
}

Response

{
 "data": {
    "movieId": "62e7a394d93370f523bdfd7c"
    //... all fields
  }
  "error": null
}