RESTful API for Digital Book Application are made by:
- a Architecture diagram of the Digital Book Application
- an Entity Relational Diagram of the Digital Book Application Data Model
- RESTful API End-Point
| Method | End-Point | Description |
|---|---|---|
| POST | /login | to login on Digital Book Application |
| GET | /customers | to get all Customers on Digital Book Application |
| GET | /customers/id | to get one Customers on Digital Book Application |
| POST | /customers | to create Customers on Digital Book Application |
| PUT | /customers/id | to update Customers on Digital Book Application |
| DELETE | /customers/id | to delete Customers on Digital Book Application |
| POST | /books | to add Books on Digital Book Application |
| GET | /books | to get all Books on Digital Book Application |
| GET | /books/id | to get one Books on Digital Book Application |
| PUT | /books/id | to update Books on Digital Book Application |
| DELETE | /books/id | to delete Books on Digital Book Application |

