-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting endpoints
More file actions
189 lines (154 loc) · 4.7 KB
/
Copy pathtesting endpoints
File metadata and controls
189 lines (154 loc) · 4.7 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
==================================================
register test
==================================================
{
"type":"Register",
"name": "Tony",
"surname": "Stark",
"email": "tony@starkindustries1.com",
"password": "insert_your_password_here",
"user_type": "admin"
}
{
"type":"Register",
"name": "test",
"surname": "one",
"email": "test@One.com",
"password": "insert_your_password_here",
"user_type": "customer"
}
==================================================
update Test
==================================================
{
"type": "UpdateProduct",
"api_key": "insert_admin_api_key_here",
"product_id": 1,
"name": "Redragon Shiva Wired Membrane Keyboard",
"description": "Experience the tactile feedback of a mechanical keyboard without the loud actuation of each keypress with the Redragon Shiva K512 Membrane RGB Gaming Keyboard. Its full 104-Key QWERTY layout doesn’t take anything away from a standard keyboard, however it does allow for 26 conflict-free key presses and featuresan extra 9 multimedia keys and 6 macro keys for your enjoyment. Its RGB lighting has 7 pre-set backlight patterns and 6 customized modes which can be changed with a button combination. This keyboard allows at most 26 keys to work simultaneously to provide fast as well as accurate game response. This keyboard’s bevel is host to a unique and smooth lighting which runs around the keyboard’s edges. Ergonomically designed with a detachable wrist-rest section connected by magnets, the wrist-rest offers great support to make use more comfortable..",
"image_url": "https://m.media-amazon.com/images/I/51uJkrDsDuL._AC_SX522_.jpg"
}
==================================================
delete Test
==================================================
{
"type": "DeleteProduct",
"api_key": "insert_admin_api_key_here",
"product_id": "5"
}
==================================================
login Test
==================================================
{
"type":"Login",
"email": "tony@starkindustries1.com",
"password": "insert_your_password_here"
}
==================================================
CreateProduct
==================================================
==================================================
CreateOffer
==================================================
{
"type": "CreateOffer",
"api_key": "insert_admin_api_key_here",
"product_id": 6,
"retailer_id": 9,
"stock": 100,
"price": 1499.99,
"link": "https://techworld.com/product/1"
}
Response:
{
"status": "success",
"timestamp": 1747920533389,
"data": "Offer added successfully"
}
==================================================
update offer
==================================================
{
"type": "UpdateOffer",
"api_key": "insert_admin_api_key_here",
"product_id": 1,
"retailer_id": 1,
"price": 199.99,
"stock": 199,
"discount": 0
}
==================================================
delete offer
==================================================
{
"type": "DeleteOffer",
"api_key": "your_admin_api_key",
"product_id": 123,
"retailer_id": 456
}
==================================================
update retailer
==================================================
{
"type": "UpdateRetailer",
"api_key": "insert_admin_api_key_here",
"retailer_id": 2,
"name": "ayush's store",
"address": "123 Tech Street",
"opening_time": "09:00:00",
"closing_time": "17:00:00"
}
==================================================
delete retailer
==================================================
{
"type": "DeleteRetailer",
"api_key": "your_admin_api_key",
"retailer_id": 123
}
==================================================
get all retailer
==================================================
{
"type": "GetAllRetailers"
}
{
"type": "GetAllRetailers",
"return": ["retailer_id", "name", "retailer_type"]
}
{
"type": "GetAllRetailers",
"filters": {
"retailer_type": "physical",
"country": "South Africa"
}
}
{
"type": "GetAllRetailers",
"sort": "name",
"order": "ASC",
"limit": 20
}
==================================================
add to wishlist test
==================================================
{
"type": "AddToWishlist",
"api_key": "insert_customer_api_key_here",
"product_id":1
}
==================================================
get wishlist test
==================================================
{
"type": "GetWishlist",
"api_key": "insert_customer_api_key_here"
}
==================================================
delete from wishlist test
==================================================
{
"type": "DeleteFromWishlist",
"api_key": "your_admin_api_key",
"product_id":1
}