-
Notifications
You must be signed in to change notification settings - Fork 0
/
photo_2023-09-08_20-18-45(1).jpg
734 lines (734 loc) · 18.9 KB
/
photo_2023-09-08_20-18-45(1).jpg
File metadata and controls
734 lines (734 loc) · 18.9 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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
{
"info": {
"_postman_id": "1215235d-b933-4bb2-98ce-d60ad8918820",
"name": "OpenRNC",
"description": "# 🚀 Get started here\n\nThis collection guides you through CRUD operations (GET, POST, PUT, DELETE), variables, and tests.\n\n## 🔖 **How to use this collection**\n\n#### **Step 1: Send requests**\n\nRESTful APIs allow you to perform CRUD operations using the POST, GET, PUT, and DELETE HTTP methods.\n\nThis collection contains each of these request types. Open each request and click \"Send\" to see what happens.\n\n#### **Step 2: View responses**\n\nObserve the response tab for status code (200 OK), response time, and size.\n\n#### **Step 3: Send new Body data**\n\nUpdate or add new data in \"Body\" in the POST request. Typically, Body data is also used in PUT and PATCH requests.\n\n```\n{\n \"name\": \"Add your name in the body\"\n}\n\n```\n\n#### **Step 4: Update the variable**\n\nVariables enable you to store and reuse values in Postman. We have created a variable called `base_url` with the sample request [https://postman-api-learner.glitch.me](https://postman-api-learner.glitch.me). Replace it with your API endpoint to customize this collection.\n\n#### **Step 5: Add tests in the \"Tests\" tab**\n\nTests help you confirm that your API is working as expected. You can write test scripts in JavaScript and view the output in the \"Test Results\" tab.\n\n<img src=\"https://content.pstmn.io/b5f280a7-4b09-48ec-857f-0a7ed99d7ef8/U2NyZWVuc2hvdCAyMDIzLTAzLTI3IGF0IDkuNDcuMjggUE0ucG5n\">\n\n## 💪 Pro tips\n\n- Use folders to group related requests and organize the collection.\n- Add more scripts in \"Tests\" to verify if the API works as expected and execute flows.\n \n\n## ℹ️ Resources\n\n[Building requests](https://learning.postman.com/docs/sending-requests/requests/) \n[Authorizing requests](https://learning.postman.com/docs/sending-requests/authorization/) \n[Using variables](https://learning.postman.com/docs/sending-requests/variables/) \n[Managing environments](https://learning.postman.com/docs/sending-requests/managing-environments/) \n[Writing scripts](https://learning.postman.com/docs/writing-scripts/intro-to-scripts/)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "16025267"
},
"item": [
{
"name": "auth",
"item": [
{
"name": "signup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"email\":\"erfuuan@gmail.com\",\n \"password\":\"12345678\"\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/auth/signup",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"auth",
"signup"
]
}
},
"response": []
},
{
"name": "login",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful POST request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);",
"});",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\n \"password\": \"12345678\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/auth/login",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"auth",
"login"
]
},
"description": "This is a POST request, submitting data to an API via the request body. This request submits JSON data, and the data is reflected in the response.\n\nA successful POST request typically returns a `200 OK` or `201 Created` response code."
},
"response": []
}
]
},
{
"name": "Source",
"item": [
{
"name": "create",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"test\",\n \"platform\":\"android\"\n\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/source",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"source"
]
}
},
"response": []
},
{
"name": "getAll",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"test\",\n \"platform\":\"android\"\n\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/source/",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"source",
""
]
}
},
"response": []
},
{
"name": "getOne",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"test\",\n \"platform\":\"android\"\n\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/source/653589285a53abcb4030dff5",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"source",
"653589285a53abcb4030dff5"
]
}
},
"response": []
},
{
"name": "update",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"testaaaaaaaaaa\",\n \"platform\":\"aaaaaaaaa\"\n\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/source/6536da83ba8da6819e901714",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"source",
"6536da83ba8da6819e901714"
]
}
},
"response": []
},
{
"name": "delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/source/6536da83ba8da6819e901714",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"source",
"6536da83ba8da6819e901714"
]
}
},
"response": []
}
]
},
{
"name": "destination",
"item": [
{
"name": "create",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"sdfsdf\",\n \"platform\":\"kafka\",\n \"credential\":{\n \"address\":\"127.0.0.1\",\n \"port\":6379\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/destination",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"destination"
]
}
},
"response": []
},
{
"name": "getAll",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"sdfsdf\",\n \"platform\":\"kafka\",\n \"credential\":{\n \"address\":\"127.0.0.1\",\n \"port\":6379\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/destination",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"destination"
]
}
},
"response": []
},
{
"name": "getOne",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\":\"sdfsdf\",\n \"platform\":\"kafka\",\n \"credential\":{\n \"address\":\"127.0.0.1\",\n \"port\":6379\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/destination/6535f4d33e978e62a3cf8db2",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"destination",
"6535f4d33e978e62a3cf8db2"
]
}
},
"response": []
},
{
"name": "update",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"destination\": {\n \"title\": \"aaaaaaaaaaaaaa\",\n \"platform\": \"kafka\",\n \"credential\": {\n \"address\": \"127.0.0.1\",\n \"port\": 6379\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/destination/6535f4d33e978e62a3cf8db2",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"destination",
"6535f4d33e978e62a3cf8db2"
]
}
},
"response": []
},
{
"name": "update Copy",
"request": {
"method": "DELETE",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1MzU3ZWVkNzYwZGQyNTVmODg3MjI5ZiIsImlhdCI6MTY5ODA5MzU5NCwiZXhwIjoxNjk4MTc5OTk0fQ.myt75L-1X8_Fot1LxNZuBrQ4fS4yiuu8oFw-A54Cdt0",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/destination/6535f4d33e978e62a3cf8db2",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"destination",
"6535f4d33e978e62a3cf8db2"
]
}
},
"response": []
}
]
},
{
"name": "pipeline",
"item": [
{
"name": "create",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1M2E3NjdjNmM3YTU2MmMwNjczNWJlZiIsImlhdCI6MTY5ODMzMDI2NSwiZXhwIjoxNjk4NDE2NjY1fQ.sKptUs_eG3GDT6kwRGVnQjlqmyQIF47MXw3LwL_dMvo",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"title\": \"apiToRedis\",\n \"sourceId\": \"653a63cbe6a6d3d277a93643\",\n \"destinationIds\": [\n \"653a63e50ee589894a39ad0e\",\n \"653a63e50ee589894a39acec\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "localhost:3000/api/v1/pipeline",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"pipeline"
]
}
},
"response": []
}
]
},
{
"name": "comsune",
"item": [
{
"name": "consume data",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "TKiKMAFlOcaazTrf",
"type": "text"
}
],
"url": {
"raw": "localhost:3001/api/v1/consume",
"host": [
"localhost"
],
"port": "3001",
"path": [
"api",
"v1",
"consume"
]
}
},
"response": []
}
]
},
{
"name": "profile",
"item": [
{
"name": "get",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjY1M2FkNTUxMDQ4ZDVjNzk0MzhiNTIyNSIsImlhdCI6MTY5ODM1NDUxMywiZXhwIjoxNjk4NDQwOTEzfQ.DJB6gJRz1sIJ7BDZICyxyfYDskey-SZDLHY2p1__CFI",
"type": "text"
}
],
"url": {
"raw": "localhost:3000/api/v1/profile/",
"host": [
"localhost"
],
"port": "3000",
"path": [
"api",
"v1",
"profile",
""
]
}
},
"response": []
}
]
},
{
"name": "Get data",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{base_url}}/info?id=1",
"host": [
"{{base_url}}"
],
"path": [
"info"
],
"query": [
{
"key": "id",
"value": "1"
}
]
},
"description": "This is a GET request and it is used to \"get\" data from an endpoint. There is no request body for a GET request, but you can use query parameters to help specify the resource you want data on (e.g., in this request, we have `id=1`).\n\nA successful GET response will have a `200 OK` status, and should include some kind of response body - for example, HTML web content or JSON data."
},
"response": []
},
{
"name": "Update data",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful PUT request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 201, 204]);",
"});",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n\t\"name\": \"Add your name in the body\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/info?id=1",
"host": [
"{{base_url}}"
],
"path": [
"info"
],
"query": [
{
"key": "id",
"value": "1"
}
]
},
"description": "This is a PUT request and it is used to overwrite an existing piece of data. For instance, after you create an entity with a POST request, you may want to modify that later. You can do that using a PUT request. You typically identify the entity being updated by including an identifier in the URL (eg. `id=1`).\n\nA successful PUT request typically returns a `200 OK`, `201 Created`, or `204 No Content` response code."
},
"response": []
},
{
"name": "Delete data",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful DELETE request\", function () {",
" pm.expect(pm.response.code).to.be.oneOf([200, 202, 204]);",
"});",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{base_url}}/info?id=1",
"host": [
"{{base_url}}"
],
"path": [
"info"
],
"query": [
{
"key": "id",
"value": "1"
}
]
},
"description": "This is a DELETE request, and it is used to delete data that was previously created via a POST request. You typically identify the entity being updated by including an identifier in the URL (eg. `id=1`).\n\nA successful DELETE request typically returns a `200 OK`, `202 Accepted`, or `204 No Content` response code."
},
"response": []
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "id",
"value": "1"
},
{
"key": "base_url",
"value": "https://postman-rest-api-learner.glitch.me/"
}
]
}