ashtn / VideoStoreConsumer-API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VideoStoreAPI

This Video Store API implementation is based on the Video Store API project that you have previously completed.

Functionality

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 customers
  • GET /movies
    List all movies
  • GET /movies/:title
    Look a movie up by title
  • 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 rentals
  • GET /rentals/overdue
    List all customers with overdue movies

New Functionality

  • GET /movies/search?query=
    Search The Movies DB for movies matching the query

    Minimum fields to return:

    • title
    • release_date

About


Languages

Language:Ruby 85.9%Language:HTML 7.6%Language:JavaScript 3.8%Language:CSS 1.9%Language:CoffeeScript 0.9%