-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest.http
134 lines (85 loc) · 2.02 KB
/
rest.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Some of the endpoints fot testing (need a vscode extension to send requests from this file)
# just a comment
GET http://localhost:4000/customers
###
DELETE http://localhost:4000/customers/3
###
GET http://localhost:4000/watches/4
###
GET http://localhost:4000/cart-watches/6
###
GET http://localhost:4000/cart-watches/6
###
POST http://localhost:4000/watches
Content-Type: application/json
{
"imageUrl": "https://images.unsplash.com/photo-1522312346375-d1a52e2b99b3?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8d2F0Y2h8ZW58MHx8MHx8&auto=format&fit=crop&w=500&q=60",
"price": 100000.55,
"brand": "GoodWatches",
"desc": "An Expensive Watch",
"caseColour": "Black",
"bandColour": "Silver",
"bandType": "Rubber",
"movementType": "Digital",
"faceSize": "40mm",
"stock": 3
}
###
DELETE http://localhost:4000/watches/2
Content-Type: application/json
###
PATCH http://localhost:4000/watches/1
Content-Type: application/json
{
"price": 55000.22,
"faceSize": "600mm"
}
###
GET http://localhost:4000/admins
###
GET http://localhost:4000/admins/1
###
POST http://localhost:4000/admins
Content-Type: application/json
{
"firstName": "The",
"lastName": "Boss",
"role": "ceo",
"email": "[email protected]",
"password": "password"
}
###
GET http://localhost:4000/[email protected]&password=password
###
GET http://localhost:4000/carts
###
GET http://localhost:4000/cart-watches/5
###
GET http://localhost:4000/customers/1
###
POST http://localhost:4000/carts
Content-Type: application/json
{
"customerId": 1
}
###
PATCH http://localhost:4000/carts/purchase/1
###
POST http://localhost:4000/customers
Content-Type: application/json
{
"firstName": "Second",
"lastName": "Customer",
"email": "[email protected]",
"password": "password",
"role": "customer"
}
###
POST http://localhost:4000/cart-watches
Content-Type: application/json
{
"cartId": 5,
"watchId": 6
}
###
GET http://localhost:4000/watches/new-releases