1. GET
curl http://127.0.0.1:8080/tvseries/
  1. POST
curl -X POST -H "Content-Type:application/json" -d '{"name": "West World", "originRelease":"2016-10-02"}' http://127.0.0.1:8080/tvseries/
  1. DELETE
curl -X DELETE http://127.0.0.1:8080/tvseries/23/
  1. PUT
curl -X PUT -H "Content-Type:application/json" -d '{"name": "Person of Interest"}' http://127.0.0.1:8080/tvseries/33/