You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This API will allow the user to access a database of shoes to see what shoes are in stock, when they are available, and their descriptions and price points.
IN VERSION 1.0
Shoes are addable to the database by using a POST and using the path /shoes.
Shoes are queryable to see what is in stock by using a GET and using the path /shoe.
Shoes are also searchable by ID by performing a GET and using the path /shoe/:id.
IN VERSION 1.1
Additional features are now available:
Shoes are able to be updated in the database using a PUT command and using the path /shoe/:id.
Shoes are able to be deleted from the databalse by using a DELETE command and using the path /shoe/:id.