-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrganization_API_Collection.postman_collection.json
More file actions
449 lines (448 loc) · 16.2 KB
/
Organization_API_Collection.postman_collection.json
File metadata and controls
449 lines (448 loc) · 16.2 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
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
{
"info": {
"name": "Organization Management API",
"description": "Complete collection of organization and organization category endpoints",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"version": "1.0.0"
},
"variable": [
{
"key": "baseUrl",
"value": "http://localhost:3000",
"type": "string"
},
{
"key": "organizationId",
"value": "",
"type": "string"
},
{
"key": "categoryId",
"value": "",
"type": "string"
}
],
"item": [
{
"name": "Organization Categories",
"item": [
{
"name": "Create Organization Category",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Technology\",\n \"description\": \"Technology companies and startups\"\n}"
},
"url": {
"raw": "{{baseUrl}}/organization-categories",
"host": ["{{baseUrl}}"],
"path": ["organization-categories"]
},
"description": "Create a new organization category"
},
"response": []
},
{
"name": "Get All Organization Categories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organization-categories",
"host": ["{{baseUrl}}"],
"path": ["organization-categories"]
},
"description": "Get all organization categories"
},
"response": []
},
{
"name": "Get Organization Category by ID",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organization-categories/{{categoryId}}",
"host": ["{{baseUrl}}"],
"path": ["organization-categories", "{{categoryId}}"]
},
"description": "Get a specific organization category by ID"
},
"response": []
},
{
"name": "Update Organization Category",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{authToken}}",
"description": "Requires authentication"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Updated Technology\",\n \"description\": \"Updated description for technology companies\"\n}"
},
"url": {
"raw": "{{baseUrl}}/organization-categories/{{categoryId}}",
"host": ["{{baseUrl}}"],
"path": ["organization-categories", "{{categoryId}}"]
},
"description": "Update an organization category (requires authentication)"
},
"response": []
},
{
"name": "Delete Organization Category",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "Bearer {{authToken}}",
"description": "Requires authentication"
}
],
"url": {
"raw": "{{baseUrl}}/organization-categories/{{categoryId}}",
"host": ["{{baseUrl}}"],
"path": ["organization-categories", "{{categoryId}}"]
},
"description": "Delete an organization category (requires authentication)"
},
"response": []
}
],
"description": "Endpoints for managing organization categories"
},
{
"name": "Organizations",
"item": [
{
"name": "Create Organization",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Tech Solutions Ltd\",\n \"ownerName\": \"John Doe\",\n \"ownerEmail\": \"john.doe@example.com\",\n \"ownerPhone\": \"+1234567890\",\n \"email\": \"info@techsolutions.com\",\n \"password\": \"SecurePassword123!\",\n \"categoryId\": \"{{categoryId}}\",\n \"description\": \"Leading technology solutions provider\",\n \"address\": \"123 Tech Street, Silicon Valley, CA 94000\",\n \"services\": [\"Web Development\", \"Mobile Apps\", \"Cloud Solutions\"]\n}"
},
"url": {
"raw": "{{baseUrl}}/organizations",
"host": ["{{baseUrl}}"],
"path": ["organizations"]
},
"description": "Create a new organization with all fields including the new description, address, and services"
},
"response": []
},
{
"name": "Create Organization (Legacy)",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Tech Solutions Ltd\",\n \"ownerName\": \"John Doe\",\n \"ownerEmail\": \"john.doe@example.com\",\n \"ownerPhone\": \"+1234567890\",\n \"email\": \"info@techsolutions.com\",\n \"password\": \"SecurePassword123!\",\n \"categoryId\": \"{{categoryId}}\"\n}"
},
"url": {
"raw": "{{baseUrl}}/organizations/register",
"host": ["{{baseUrl}}"],
"path": ["organizations", "register"]
},
"description": "Legacy endpoint for creating organizations (same as POST /organizations)"
},
"response": []
},
{
"name": "Get All Organizations",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations",
"host": ["{{baseUrl}}"],
"path": ["organizations"]
},
"description": "Get all organizations with their categories"
},
"response": []
},
{
"name": "Get Organization by ID",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/{{organizationId}}",
"host": ["{{baseUrl}}"],
"path": ["organizations", "{{organizationId}}"]
},
"description": "Get a specific organization by ID with its category"
},
"response": []
},
{
"name": "Update Organization",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Updated Tech Solutions Ltd\",\n \"description\": \"Updated description for the organization\",\n \"address\": \"456 New Tech Avenue, Silicon Valley, CA 94001\",\n \"services\": [\"Updated Service 1\", \"Updated Service 2\", \"New Service 3\"]\n}"
},
"url": {
"raw": "{{baseUrl}}/organizations/{{organizationId}}",
"host": ["{{baseUrl}}"],
"path": ["organizations", "{{organizationId}}"]
},
"description": "Update an organization (can update any field including new ones)"
},
"response": []
},
{
"name": "Delete Organization",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/{{organizationId}}",
"host": ["{{baseUrl}}"],
"path": ["organizations", "{{organizationId}}"]
},
"description": "Delete an organization"
},
"response": []
},
{
"name": "Approve Organization",
"request": {
"method": "PUT",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/{{organizationId}}/approve",
"host": ["{{baseUrl}}"],
"path": ["organizations", "{{organizationId}}", "approve"]
},
"description": "Approve an organization (set approvalStatus to true)"
},
"response": []
},
{
"name": "Disapprove Organization",
"request": {
"method": "PUT",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/{{organizationId}}/disapprove",
"host": ["{{baseUrl}}"],
"path": ["organizations", "{{organizationId}}", "disapprove"]
},
"description": "Disapprove an organization (set approvalStatus to false)"
},
"response": []
},
{
"name": "Get Approved Organizations",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/approved",
"host": ["{{baseUrl}}"],
"path": ["organizations", "approved"]
},
"description": "Get all approved organizations"
},
"response": []
},
{
"name": "Get Unapproved Organizations",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/unapproved",
"host": ["{{baseUrl}}"],
"path": ["organizations", "unapproved"]
},
"description": "Get all unapproved organizations"
},
"response": []
},
{
"name": "Verify Organization Email",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/organizations/verify?token={{verificationToken}}",
"host": ["{{baseUrl}}"],
"path": ["organizations", "verify"],
"query": [
{
"key": "token",
"value": "{{verificationToken}}",
"description": "Email verification token"
}
]
},
"description": "Verify organization email using the token sent via email"
},
"response": []
}
],
"description": "Endpoints for managing organizations"
},
{
"name": "Test Data Examples",
"item": [
{
"name": "Create Technology Category",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Technology\",\n \"description\": \"Technology companies and startups\"\n}"
},
"url": {
"raw": "{{baseUrl}}/organization-categories",
"host": ["{{baseUrl}}"],
"path": ["organization-categories"]
},
"description": "Example: Create a Technology category"
},
"response": []
},
{
"name": "Create Healthcare Category",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Healthcare\",\n \"description\": \"Healthcare and medical services\"\n}"
},
"url": {
"raw": "{{baseUrl}}/organization-categories",
"host": ["{{baseUrl}}"],
"path": ["organization-categories"]
},
"description": "Example: Create a Healthcare category"
},
"response": []
},
{
"name": "Create Tech Organization (Full Example)",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"InnovateTech Solutions\",\n \"ownerName\": \"Jane Smith\",\n \"ownerEmail\": \"jane.smith@innovatetech.com\",\n \"ownerPhone\": \"+1-555-0123\",\n \"email\": \"contact@innovatetech.com\",\n \"password\": \"SecurePass123!\",\n \"categoryId\": \"{{categoryId}}\",\n \"description\": \"We provide cutting-edge technology solutions for modern businesses, specializing in AI, cloud computing, and digital transformation.\",\n \"address\": \"789 Innovation Drive, Tech City, CA 90210\",\n \"services\": [\n \"Artificial Intelligence Solutions\",\n \"Cloud Infrastructure\",\n \"Mobile App Development\",\n \"Web Development\",\n \"Data Analytics\",\n \"Digital Transformation Consulting\"\n ]\n}"
},
"url": {
"raw": "{{baseUrl}}/organizations",
"host": ["{{baseUrl}}"],
"path": ["organizations"]
},
"description": "Example: Create a comprehensive tech organization with all new fields"
},
"response": []
},
{
"name": "Create Healthcare Organization (Full Example)",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Wellness Medical Center\",\n \"ownerName\": \"Dr. Michael Johnson\",\n \"ownerEmail\": \"michael.johnson@wellnessmed.com\",\n \"ownerPhone\": \"+1-555-0456\",\n \"email\": \"info@wellnessmed.com\",\n \"password\": \"MedicalPass456!\",\n \"categoryId\": \"{{categoryId}}\",\n \"description\": \"Comprehensive healthcare services providing primary care, specialty treatments, and emergency services to our community.\",\n \"address\": \"456 Health Street, Medical District, NY 10001\",\n \"services\": [\n \"Primary Care\",\n \"Emergency Services\",\n \"Cardiology\",\n \"Pediatrics\",\n \"Mental Health Services\",\n \"Physical Therapy\"\n ]\n}"
},
"url": {
"raw": "{{baseUrl}}/organizations",
"host": ["{{baseUrl}}"],
"path": ["organizations"]
},
"description": "Example: Create a healthcare organization with all new fields"
},
"response": []
}
],
"description": "Pre-configured examples with realistic test data"
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
"// Auto-set variables from responses",
"if (pm.response && pm.response.json()) {",
" const response = pm.response.json();",
" ",
" // Set organization ID from create organization response",
" if (response.data && response.data.id && pm.info.requestName.includes('Create Organization')) {",
" pm.collectionVariables.set('organizationId', response.data.id);",
" }",
" ",
" // Set category ID from create category response",
" if (response.data && response.data.id && pm.info.requestName.includes('Create') && pm.info.requestName.includes('Category')) {",
" pm.collectionVariables.set('categoryId', response.data.id);",
" }",
"}"
]
}
}
]
}