-
Notifications
You must be signed in to change notification settings - Fork 11
/
test.http
27 lines (21 loc) · 801 Bytes
/
test.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
### GET ALL PRODUCTS
GET http://localhost:4000/api/products HTTP/1.1
### GET SINGLE PRODUCT
GET http://localhost:4000/api/products/60e0102521438724ac4638f4 HTTP/1.1
### ADD ITEM
POST http://localhost:4000/api/products HTTP/1.1
Content-Type: application/json
{
"title": "GOOGLE PIXEL 4A (JUST BLACK, 6GB RAM, 128GB STORAGE)",
"price": "RS. 15,000",
"image": "https://vlebazaar.in/image/cache/catalog//B08CFSZLQ4/Google-Pixel-4a-Just-Black-6GB-RAM-128GB-Storage-B08CFSZLQ4-1000x1000.jpg",
"details": "JUST BLACK, 6GB RAM, 128GB STORAGE"
}
### DELETE ITEM
DELETE http://localhost:4000/api/products/60e00f8e21438724ac4638ef HTTP/1.1
### UPDATE ITEM
PUT http://localhost:4000/api/products/60e00f8e21438724ac4638ef HTTP/1.1
Content-Type: application/json
{
"title": "Updated product title"
}