...

/

REST API Project Overview

REST API Project Overview

Understand the project overview of REST API in this lesson.

We'll cover the following...

Project overview

We’ll create a simple inventory API. The API is an application to manage item data. This application has basic CRUD features with authentication. The application’s features are as follows:

  • Get all item data.
  • Get an item’s data by ID.
  • Create a new item.
  • Update an
...