This Video Store API implementation is based on the Video Store API project that you have previously completed.
This API comes pre-packaged with most of the functionality that you will require. The following endpoints are impemented, based off of the primary and optional requirements of the project.
GET /customers
List all customersGET /movies
List all moviesGET /movies/:title
Look a movie up bytitle
POST /rentals/:title/check-out
Check out one of the movie's inventory to the customer. The rental's check-out date should be set to today.POST /rentals/:title/return
Check in one of a customer's rentalsGET /rentals/overdue
List all customers with overdue movies
-
GET /movies/search?query=
Search The Movies DB for movies matching the queryMinimum fields to return:
title
release_date