Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 732 Bytes

request.rest

File metadata and controls

37 lines (22 loc) · 732 Bytes

POST http://localhost:3000/api/v1/product/add Content-Type: application/json

{
"brand": "Apple", "name": "iMac 30 inch", "category": "Desktop", "location": "Barcelona", "price": 1950.95

}


PATCH http://localhost:3000/api/v1/product/update/1 Content-Type: application/json


GET http://localhost:3000/api/v1/product/all Content-Type: application/json


GET http://localhost:3000/api/v1/product/1 Content-Type: application/json


DELETE http://localhost:3000/api/v1/product/delete/1 Content-Type: application/json