The content of the project is that. users are registered. and logs into the system. then can add, delete, update and search all books in the system. the project is made using typescript and nestjs. download the code and start learning!
POST /auth/register| body | Type | Description |
|---|---|---|
user_name |
string |
Required |
user_email |
string |
Required |
user_password |
string |
Required |
POST /auth/Login| Parameter | Type | Description |
|---|---|---|
user_name |
string |
Required |
user_password |
string |
Required |
GET /book/ POST /book/oneBook/:id| Parameter | Type | Description |
|---|---|---|
id |
string |
Required |
POST /book/addBook| body | Type | Description |
|---|---|---|
id |
string |
Required |
book_description |
string |
Required |
book_title |
string |
Required |
book_price |
string |
Required |
book_author |
string |
Required |
created_by_id |
string |
Required |
created_at |
string |
Required |
POST /book/updateBook/:id| body | Type | Description |
|---|---|---|
id |
string |
Required |
book_description |
string |
Required |
book_title |
string |
Required |
book_price |
string |
Required |
book_author |
string |
Required |
DELETE /book/deleteBook/:id| Parameter | Type | Description |
|---|---|---|
id |
string |
Required |
Thanks for watching!
