Welcome to my API project

This is a project I built working through a course on Udemy, for which I received the certificate of completion that occupies this page's background:

This API simulates a store's inventory in the form of a CRUD application. You can create, read, update and delete stores. You can do all of these functions on items as well, but keep in mind all items are associated with a store. At this point I use Postman to interact with the API as it makes it very easy to send requests in order to test my code. These include GET, POST, PUT and DELETE requests.

To get a glimpse at the API you can key in a few specific endpoints:


endpoint: '/store/<name_or_number>' : Stores can be looked up by their name or their id number


endpoint: '/item/<name_or_number> : Items can be looked up by their name or their id number

NOTE: Keep in mind items of the same name can exist in different stores. In any case, the same item name in different stores will have different id numbers. If searched by name, this method returns all occurrences of the searched-for item


endpoint: /user/<name_or_number> : Users can be looked up by their name or their id number