File size: 6,486 Bytes
70556b7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
@RobDeliveryAPI_HostAddress = http://localhost:5102
@token = your_jwt_token_here

### === USER ENDPOINTS === ###

### Register new user (password-based)
POST {{RobDeliveryAPI_HostAddress}}/api/User/register
Content-Type: application/json

{
  "userName": "testuser",
  "email": "test@example.com",
  "password": "SecurePassword123!",
  "phoneNumber": "+380123456789"
}

###

### Register new user (Google OAuth)
POST {{RobDeliveryAPI_HostAddress}}/api/User/register
Content-Type: application/json

{
  "userName": "googleuser",
  "email": "google@example.com",
  "googleIdToken": "google_id_token_here"
}

###

### Login user (password-based)
POST {{RobDeliveryAPI_HostAddress}}/api/User/login
Content-Type: application/json

{
  "email": "test@example.com",
  "password": "SecurePassword123!"
}

###

### Login user (Google OAuth)
POST {{RobDeliveryAPI_HostAddress}}/api/User/login
Content-Type: application/json

{
  "email": "google@example.com",
  "googleIdToken": "google_id_token_here"
}

###

### === ORDER ENDPOINTS === ###

### Create new order (requires auth)
POST {{RobDeliveryAPI_HostAddress}}/api/Order
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "name": "Package Delivery",
  "description": "Electronics package",
  "weight": 2.5,
  "price": 150.00,
  "recipientId": 2,
  "pickupNodeId": 1,
  "dropoffNodeId": 3
}

###

### Get order by ID
GET {{RobDeliveryAPI_HostAddress}}/api/Order/1
Authorization: Bearer {{token}}

###

### Get all orders
GET {{RobDeliveryAPI_HostAddress}}/api/Order
Authorization: Bearer {{token}}

###

### Get my orders
GET {{RobDeliveryAPI_HostAddress}}/api/Order/my-orders
Authorization: Bearer {{token}}

###

### Get user orders by userId
GET {{RobDeliveryAPI_HostAddress}}/api/Order/user/1
Authorization: Bearer {{token}}

###

### Get sent orders
GET {{RobDeliveryAPI_HostAddress}}/api/Order/sent/1
Authorization: Bearer {{token}}

###

### Get received orders
GET {{RobDeliveryAPI_HostAddress}}/api/Order/received/2
Authorization: Bearer {{token}}

###

### Get orders by status
GET {{RobDeliveryAPI_HostAddress}}/api/Order/status/Pending
Authorization: Bearer {{token}}

###

### Update order status
PATCH {{RobDeliveryAPI_HostAddress}}/api/Order/1/status
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "newStatus": "Processing"
}

###

### Assign robot to order
POST {{RobDeliveryAPI_HostAddress}}/api/Order/1/assign-robot
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "robotId": 1
}

###

### Cancel order
POST {{RobDeliveryAPI_HostAddress}}/api/Order/1/cancel
Authorization: Bearer {{token}}

###

### Delete order
DELETE {{RobDeliveryAPI_HostAddress}}/api/Order/1
Authorization: Bearer {{token}}

###

### === ROBOT ENDPOINTS === ###

### Create new robot
POST {{RobDeliveryAPI_HostAddress}}/api/Robot
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "name": "Robot-01",
  "model": "DeliveryBot-X1",
  "type": "Ground",
  "currentNodeId": 1
}

###

### Get robot by ID
GET {{RobDeliveryAPI_HostAddress}}/api/Robot/1
Authorization: Bearer {{token}}

###

### Get all robots
GET {{RobDeliveryAPI_HostAddress}}/api/Robot
Authorization: Bearer {{token}}

###

### Get robots by status
GET {{RobDeliveryAPI_HostAddress}}/api/Robot/status/Idle
Authorization: Bearer {{token}}

###

### Get robots by type
GET {{RobDeliveryAPI_HostAddress}}/api/Robot/type/Ground
Authorization: Bearer {{token}}

###

### Get available robots
GET {{RobDeliveryAPI_HostAddress}}/api/Robot/available
Authorization: Bearer {{token}}

###

### Update robot
PUT {{RobDeliveryAPI_HostAddress}}/api/Robot/1
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "id": 1,
  "name": "Robot-01-Updated",
  "model": "DeliveryBot-X1",
  "type": "Ground",
  "status": "Idle",
  "batteryLevel": 85,
  "currentNodeId": 2
}

###

### Delete robot
DELETE {{RobDeliveryAPI_HostAddress}}/api/Robot/1
Authorization: Bearer {{token}}

###

### === NODE ENDPOINTS === ###

### Create new node
POST {{RobDeliveryAPI_HostAddress}}/api/Node
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "name": "Central Station",
  "description": "Main delivery hub",
  "latitude": 49.9935,
  "longitude": 36.2304,
  "type": "Hub"
}

###

### Get node by ID
GET {{RobDeliveryAPI_HostAddress}}/api/Node/1
Authorization: Bearer {{token}}

###

### Get all nodes
GET {{RobDeliveryAPI_HostAddress}}/api/Node
Authorization: Bearer {{token}}

###

### Get nodes by type
GET {{RobDeliveryAPI_HostAddress}}/api/Node/type/Hub
Authorization: Bearer {{token}}

###

### Update node
PUT {{RobDeliveryAPI_HostAddress}}/api/Node/1
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "id": 1,
  "name": "Central Station Updated",
  "description": "Main delivery hub - updated",
  "latitude": 49.9935,
  "longitude": 36.2304,
  "type": "Hub"
}

###

### Delete node
DELETE {{RobDeliveryAPI_HostAddress}}/api/Node/1
Authorization: Bearer {{token}}

###

### === PARTNER ENDPOINTS === ###

### Create new partner
POST {{RobDeliveryAPI_HostAddress}}/api/Partner
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "name": "FastDelivery LLC",
  "contactInfo": "contact@fastdelivery.com",
  "address": "123 Main Street, Kharkiv"
}

###

### Get partner by ID
GET {{RobDeliveryAPI_HostAddress}}/api/Partner/1
Authorization: Bearer {{token}}

###

### Get all partners
GET {{RobDeliveryAPI_HostAddress}}/api/Partner
Authorization: Bearer {{token}}

###

### Update partner
PUT {{RobDeliveryAPI_HostAddress}}/api/Partner/1
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "id": 1,
  "name": "FastDelivery LLC Updated",
  "contactInfo": "newcontact@fastdelivery.com",
  "address": "456 New Street, Kharkiv"
}

###

### Delete partner
DELETE {{RobDeliveryAPI_HostAddress}}/api/Partner/1
Authorization: Bearer {{token}}

###

### === ADMIN ENDPOINTS (Admin role required) === ###

### Get system statistics
GET {{RobDeliveryAPI_HostAddress}}/api/Admin/stats
Authorization: Bearer {{token}}

###

### Export delivery history
GET {{RobDeliveryAPI_HostAddress}}/api/Admin/export/delivery-history
Authorization: Bearer {{token}}

###

### Create database backup
POST {{RobDeliveryAPI_HostAddress}}/api/Admin/backup
Content-Type: application/json
Authorization: Bearer {{token}}

{
  "backupPath": "Backups"
}

###

### Get robot efficiency analytics
GET {{RobDeliveryAPI_HostAddress}}/api/Admin/analytics/robot-efficiency
Authorization: Bearer {{token}}

###