- GET {url}/api/movie -> Returns all Movies.
- GET {url}/api/movie/{id} -> Return one movie with the specified {id}.
- POST {url}/api/movie -> Creates one movie.
- PUT {url}/api/movie/{id} ->Updates the whole 'movie' object of the specified {id}.
- PATCH {url}/api/movie/{id} -> Also updates one movie, but parcially.
- DELETE {url}/api/movie/{id} -> Deletes the specified id.
- {url} -> The url of the host of the API
- {id} -> Param that can be used find, update and delete a movie. It's basically an unique identifier for each movie