-
Notifications
You must be signed in to change notification settings - Fork 17
/
rabbitmq-management.json.postman_collection
1619 lines (1619 loc) · 56 KB
/
rabbitmq-management.json.postman_collection
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
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"id": "637a1895-9aff-af27-71cf-99efe1380937",
"name": "RabbitMQ Management",
"description": "Based on this documentation:\n\nhttps://raw.githack.com/rabbitmq/rabbitmq-management/rabbitmq_v3_6_1/priv/www/api/index.html",
"order": [
"1e4ffb57-cc22-8a21-8f89-374375109c14",
"66aff78e-40df-8c51-aeab-47b07a770b3f",
"59f0f150-7782-ff71-c3d8-d1126b98b339",
"5a59e8ba-bd95-966c-7e90-b0d9bba68d2d",
"22ba0ae9-6fab-b54c-5097-ce5eff5d498a",
"258fb250-0bec-c6db-e02f-134b29e7822c",
"09b1cb41-b902-6df4-e9be-277ad2ba2464",
"077bed7f-abd7-21b8-4df2-44def2710580",
"c97a970c-7dc8-b3e2-b420-8b384ad0a2df",
"9a613d98-a364-f853-69cf-1543bab4d731",
"d6f249b5-edb6-c549-47f1-74397a485e20",
"ed7cd859-2d94-544b-5df6-5ae43a3a85f2",
"1275388b-e7a0-30b7-8f8d-6d34f16d7745",
"f8acf8c4-7d6b-0cca-d47f-c680d0a305d8",
"9f9c72bf-70c4-02fb-2349-7a997f0e7f5a",
"6636a023-a2bf-9420-a0ea-9ae81ff0a3bd",
"86406311-01d4-cabd-8089-c56e6969f76e",
"e2e1f3f2-01fd-4bd3-d004-1cf89bca6f2d"
],
"folders": [
{
"id": "09f71727-c84d-da47-df98-6dc1e3a46c40",
"name": "Channels",
"description": "",
"order": [
"94421399-701e-724d-0f85-1fca237af4c6",
"6ea1650a-27f2-c363-c65a-579a96bdce86",
"8d686177-406d-3add-3c4b-da6bf8957e18",
"0b74d50d-e8c1-b1ef-65ed-679374cbadb8"
],
"owner": 0
},
{
"id": "77c83f18-507b-f103-71d7-bc47c706b05b",
"name": "Connections",
"description": "",
"order": [
"8a6279a1-2c09-c354-7b03-9fcfaa0080c5",
"7945ddcb-9096-8a46-bea9-8e3f7bea4a7c",
"d6c4bc6f-c0c3-bf38-e313-a72a90e4e7f5",
"b58ba47b-d267-6850-890b-1bd69c714636"
],
"owner": 0
},
{
"id": "5edb4b68-67fa-0a2f-6868-444fb3e29b82",
"name": "Users",
"description": "",
"order": [
"5df65219-029c-e66c-53ed-ab9f7dcd227f",
"510384b8-7627-7c13-7110-dc99560bab65",
"06009945-18ec-992e-a708-686279a6c942",
"ec996fa5-0662-9737-5a36-2d9730e538f5",
"8790c3b0-daeb-28d0-c263-3e2d9ad0b9b2",
"66ee50c4-1157-739a-c75a-ed474c8cdbd4",
"c9ff43e6-9394-1446-ff76-2be89658cd16",
"b94e7df0-c74d-4aee-d114-f199bf43f73d",
"07e11091-2419-aee8-fc07-4520277ad175",
"cb2a7558-8219-dd06-692c-241b39bb7d7f"
],
"owner": 0
},
{
"id": "377eb29a-40a2-b9f1-3488-43fcb58903fb",
"name": "Server/vhost",
"description": "",
"order": [
"cbfc36b2-bbcc-1d86-b00c-6fb016dc53ab",
"5bc259e2-35f6-e3a0-899d-22118bf39dc9",
"b9120d6e-e029-88f0-7ff9-070e2270b6de",
"baffa18b-cd90-691f-7aa8-c4527a96ac0d",
"4bfc266e-0694-8afd-fa21-633396bae404",
"aa4b1b38-3f4e-009c-16db-11e5864b558f",
"bdd7dffc-fa82-3312-4507-18415c1d5df4",
"f4aeb20d-7e14-9b2a-8524-5291edbd9a51",
"4b92e764-99c2-59cd-7ffe-8642c52989c0",
"f3a2ff0e-8f0b-8145-8832-66a8ce7136cc",
"597bed00-d1d5-1cb5-0a49-83adedf8e32e",
"54ca5ea2-d026-a8c6-07ee-b380a6658ec8",
"e9923fcc-aeb3-6612-c099-570ac2766aa6",
"ed340fa3-827e-ada8-f216-193a03eadd81",
"666ad81a-c4f4-02b0-7501-a1fd4c1d57d4",
"4d1c878a-28ec-7116-a9ed-1f5775b8f0e6",
"3241da1d-65e4-24c7-9c58-67ee95ab687b"
],
"owner": 0
},
{
"id": "45412c67-914f-5960-5d9e-40e3b950fb07",
"name": "Exchanges",
"description": "",
"order": [
"f837b335-e56f-d831-215f-a915c89dcffa",
"c0e51bda-b3eb-f8a3-70bb-adf3a9d70838",
"d56ea2f4-0b8b-0a25-a04a-5e96748d8b00",
"d90eb8d8-1887-9ad7-b6c1-e0557a64e0aa",
"fd2d0177-5f2d-ffc2-d9ef-dc4119de1393",
"f64b78ec-638a-59c2-7327-40aaff233f3d",
"164df907-f45b-fccf-3227-b04a84012620"
],
"owner": 0
},
{
"id": "ba243e82-e976-6eb4-9d8d-a241fae279ba",
"name": "Queues",
"description": "",
"order": [
"38fe8c03-2561-f365-2f4a-dbefb3b948c9",
"5cb1f0bc-ecb1-01df-0022-7e57f36bdcbc",
"a58a3319-3511-162f-9999-1641a8fd3cda",
"2da662e2-1e78-45fb-4dd7-ea0c9cf61617",
"ddd0df84-e554-8864-f46f-673766e19fe1",
"3f7cbdf6-89fd-b5c6-df73-59071149a4aa",
"e43abf77-4ab4-17a0-241b-3db5861ee5de",
"e6c79191-5cf9-bf6e-e941-da2f4e59990d",
"7be1b6fc-24c6-3767-5992-17f9c7a70328"
],
"owner": 0
},
{
"id": "6332386e-bcf2-0054-58e1-712e3fd394ff",
"name": "Policies",
"description": "",
"order": [
"6357403e-212a-30ef-ed08-0bb9a314cdd1",
"c07bfe0d-cc8a-41f9-3011-d110e219dbd9",
"29fdb290-9fd6-8314-dc28-32d6e6eaf9ba",
"5aba9db4-344d-2ce2-6c4d-7dd8209bd8d4",
"3d9079d8-648d-be84-8acb-366d9c9b1065"
],
"owner": 0
}
],
"timestamp": 1457222676727,
"owner": 0,
"remoteLink": "",
"public": false,
"requests": [
{
"id": "06009945-18ec-992e-a708-686279a6c942",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/users/name",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641360566,
"name": "Delete user by name",
"description": "Delete user by name",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82"
},
{
"id": "077bed7f-abd7-21b8-4df2-44def2710580",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings/vhost/e/exchange/q/queue/props",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641281519,
"name": "Get individual exchange/queue binding",
"description": "An individual binding between an exchange and a queue. The props part of the URI is a \"name\" for the binding composed of its routing key and a hash of its arguments.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "07e11091-2419-aee8-fc07-4520277ad175",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/users/name",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641346286,
"name": "Get user by name",
"description": "Get an individual user.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82"
},
{
"id": "09b1cb41-b902-6df4-e9be-277ad2ba2464",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/bindings/vhost/e/exchange/q/queue",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641275832,
"name": "Create Exchange/Queue Binding",
"description": "Create a new binding, POST to this URI. You will need a body looking something like this:\n\n<blockquote>\n{<br>\n\"routing_key\":\"my_routing_key\",<br>\n\"arguments\":{}<br>\n}\n</blockquote>\n\nAll keys are optional. The response will contain a Location header telling you the URI of your new binding.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"rawModeData": "{\n\"routing_key\":\"my_routing_key\",\n\"arguments\":{}\n}"
},
{
"id": "0b74d50d-e8c1-b1ef-65ed-679374cbadb8",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/vhosts/%2f/channels",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641056811,
"name": "List All Open Channels on vhost",
"description": "A list of all open channels in a specific vhost.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "09f71727-c84d-da47-df98-6dc1e3a46c40"
},
{
"id": "1275388b-e7a0-30b7-8f8d-6d34f16d7745",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings/vhost/e/source/e/destination/props",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641307710,
"name": "/api/bindings/vhost/e/source/e/destination/props",
"description": "A list of all bindings between two exchanges. Similar to the list of all bindings between an exchange and a queue, above.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "164df907-f45b-fccf-3227-b04a84012620",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/exchanges/%2f/amq.direct/bindings/destination",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641123766,
"name": "List All Bindings in exchange is destination",
"description": "A list of all bindings in which a given exchange is the source.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "45412c67-914f-5960-5d9e-40e3b950fb07"
},
{
"id": "1e4ffb57-cc22-8a21-8f89-374375109c14",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/consumers",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641070403,
"name": "Consumer Info",
"description": "A list of all consumers.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "22ba0ae9-6fab-b54c-5097-ce5eff5d498a",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings/%2f",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641265734,
"name": "List of all vhost bindings",
"description": "A list of all bindings in a given virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "258fb250-0bec-c6db-e02f-134b29e7822c",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings/vhost/e/exchange/q/queue",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641270535,
"name": "List Exchange/Queue Binding",
"description": "A list of all bindings between an exchange and a queue. Remember, an exchange and a queue can be bound together many times!",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "29fdb290-9fd6-8314-dc28-32d6e6eaf9ba",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/policies/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641439918,
"name": "Get individual Policy",
"description": "Get an individual policy.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "6332386e-bcf2-0054-58e1-712e3fd394ff"
},
{
"id": "2da662e2-1e78-45fb-4dd7-ea0c9cf61617",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/queues/%2f/queue-name",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641159680,
"name": "Create a Queue",
"description": "To create a queue, you will need a body looking something like this:\n\n<blockquote>\n{<br>\n\"auto_delete\":false,<br>\n\"durable\":true,<br>\n\"arguments\":{},<br>\n\"node\":\"rabbit@smacmullen\"<br>\n}\n</blockquote>\n\nAll keys are optional.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "ba243e82-e976-6eb4-9d8d-a241fae279ba",
"rawModeData": "{\n\"auto_delete\":false,\n\"durable\":true,\n\"arguments\":{},\n\"node\":\"rabbit@localhost\"\n}"
},
{
"id": "3241da1d-65e4-24c7-9c58-67ee95ab687b",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/vhosts/%2f/permissions",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641332994,
"name": "Get List of vhost permissions",
"description": "A list of all permissions for a given virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "38fe8c03-2561-f365-2f4a-dbefb3b948c9",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/queues",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641144224,
"name": "Get List of All Queues",
"description": "A list of all queues.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "ba243e82-e976-6eb4-9d8d-a241fae279ba"
},
{
"id": "3d9079d8-648d-be84-8acb-366d9c9b1065",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/policies/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641450204,
"name": "Delete a policy",
"description": "Delete a policy",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "6332386e-bcf2-0054-58e1-712e3fd394ff"
},
{
"id": "3f7cbdf6-89fd-b5c6-df73-59071149a4aa",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/queues/%2f/hello/bindings",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641238659,
"name": "List all queue bindings",
"description": "A list of all bindings on a given queue.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "ba243e82-e976-6eb4-9d8d-a241fae279ba"
},
{
"id": "4b92e764-99c2-59cd-7ffe-8642c52989c0",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/definitions/vhost",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457639440769,
"name": "Get vhost Definition",
"description": "The server definitions for a given virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "4bfc266e-0694-8afd-fa21-633396bae404",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/nodes/rabbit@da3be74c053640fe92c6a39e2d7a5e46?memory=true&binary=true",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457639412744,
"name": "Get Individual Node",
"description": "An individual node in the RabbitMQ cluster. \n\nOptional Query Params</br>\n<strong>?memory=true</strong><br>\nto get memory statistics\n\n<strong>?binary=true</strong><br>\nto get a breakdown of binary memory use (may be expensive if there are many small binaries in the system).",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "4d1c878a-28ec-7116-a9ed-1f5775b8f0e6",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/vhosts",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641313912,
"name": "Get List of vhost",
"description": "A list of all vhosts.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "510384b8-7627-7c13-7110-dc99560bab65",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/permissions/vhost/user",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641399156,
"name": "Delete user on vhost",
"description": "Delete user on vhost",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82"
},
{
"id": "54ca5ea2-d026-a8c6-07ee-b380a6658ec8",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/parameters/component/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641425823,
"name": "Delete Parameter on vhost",
"description": "Delete Parameter on vhost",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "597bed00-d1d5-1cb5-0a49-83adedf8e32e",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/parameters/component/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641421164,
"name": "Create parameter on vhost",
"description": "Create an individual parameter. To create a parameter, you will need a body looking something like this:\n\n<blockquote>\n{<br>\n\"vhost\": \"/\",<br>\n\"component\":\"federation\",<br>\n\"name\":\"local_username\",<br>\n\"value\":\"guest\"<br>\n}\n</blockquote>",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb",
"rawModeData": " {\n\"vhost\": \"/\",\n\"component\":\"federation\",\n\"name\":\"local_username\",\n\"value\":\"guest\"\n}"
},
{
"id": "59f0f150-7782-ff71-c3d8-d1126b98b339",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/exchanges/%2f/amq.direct/publish",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457727309641,
"name": "Publish Message to Exchange",
"description": "Publish a message to a given exchange. You will need a body looking something like:\n\n<blockquote>\n{<br>\n\"properties\":{},<br>\n\"routing_key\":\"my key\",<br>\n\"payload\":\"my body\",<br>\n\"payload_encoding\":\"string\"<br>\n}\n</blockquote>\n\nAll keys are mandatory. The payload_encoding key should be either \"string\" (in which case the payload will be taken to be the UTF-8 encoding of the payload field) or \"base64\" (in which case the payload field is taken to be base64 encoded).\nIf the message is published successfully, the response will look like:\n\n<blockquote>\n{\"routed\": true}\n</blockquote>\n\nrouted will be true if the message was sent to at least one queue.\nPlease note that the HTTP API is not ideal for high performance publishing; the need to create a new TCP connection for each message published can limit message throughput compared to AMQP or other protocols using long-lived connections.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"rawModeData": " {\n\"properties\":{},\n\"routing_key\":\"my key\",\n\"payload\":\"my body\",\n\"payload_encoding\":\"string\"\n}"
},
{
"id": "5a59e8ba-bd95-966c-7e90-b0d9bba68d2d",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641261568,
"name": "List of all bindings",
"description": "A list of all bindings.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "5aba9db4-344d-2ce2-6c4d-7dd8209bd8d4",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/policies/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641444844,
"name": "Create a policy",
"description": "To create a policy, you will need a body looking something like this:\n\n<blockquote>\n{<br>\n\"pattern\":\"^amq.\",<br>\n\"definition\": {<br>\n \"federation-upstream-set\":\"all\"<br>\n}, <br>\n\"priority\":0, <br>\n\"apply-to\": \"all\"<br>\n}\n<blockquote>\npattern and definition are mandatory, priority and apply-to are optional.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "6332386e-bcf2-0054-58e1-712e3fd394ff",
"rawModeData": " {\n\"pattern\":\"^amq.\",\n\"definition\": {\n\"federation-upstream-set\":\"all\"\n}, \n\"priority\":0, \n\"apply-to\": \"all\"\n}"
},
{
"id": "5bc259e2-35f6-e3a0-899d-22118bf39dc9",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/cluster-name",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457639389736,
"name": "Get Cluster Name",
"description": "Name identifying this RabbitMQ cluster.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "5cb1f0bc-ecb1-01df-0022-7e57f36bdcbc",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/queues/%2f",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641148351,
"name": "Get vhost Queues",
"description": "A list of all queues in a given virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "ba243e82-e976-6eb4-9d8d-a241fae279ba"
},
{
"id": "5df65219-029c-e66c-53ed-ab9f7dcd227f",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/users/name",
"preRequestScript": "",
"pathVariables": {},
"method": "PUT",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641351685,
"name": "Create a user",
"description": "To create a user, you will need a body looking something like this:\n\n<blockquote>\n{\"password\":\"secret\",\"tags\":\"administrator\"}\n</blockquote>\nor:\n<blockquote>\n{<br>\n\"password_hash\":\"2lmoth8l4H0DViLaK9Fxi6l9ds8=\",<br>\n\"tags\":\"administrator\"<br>\n}\n\nThe tags key is mandatory. Either <strong>password</strong> or <strong>password_hash</strong> must be set. Setting password_hash to \"\" will ensure the user cannot use a password to log in. tags is a comma-separated list of tags for the user. Currently recognised tags are \"administrator\", \"monitoring\" and \"management\".",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82",
"rawModeData": "{\n\"password\":\"secret\",\n\"tags\":\"administrator\"\n}"
},
{
"id": "6357403e-212a-30ef-ed08-0bb9a314cdd1",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/policies",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641430062,
"name": "Get all Policies",
"description": "A list of all policies.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "6332386e-bcf2-0054-58e1-712e3fd394ff"
},
{
"id": "6636a023-a2bf-9420-a0ea-9ae81ff0a3bd",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/parameters/component/vhost",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641411468,
"name": "List of all parameters/component on vhost",
"description": "A list of all parameters for a given component and virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "666ad81a-c4f4-02b0-7501-a1fd4c1d57d4",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/vhosts/name",
"preRequestScript": "",
"pathVariables": {},
"method": "DELETE",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641328169,
"name": "Delete vhost by name",
"description": "Delete an individual virtual host.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "377eb29a-40a2-b9f1-3488-43fcb58903fb"
},
{
"id": "66aff78e-40df-8c51-aeab-47b07a770b3f",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/consumers/%2f",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641086599,
"name": "Consumer Info on vhost",
"description": "A list of all consumers on vhost.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "66ee50c4-1157-739a-c75a-ed474c8cdbd4",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/permissions",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641372707,
"name": "Get List of all users/permissions",
"description": "A list of all permissions for all users.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82"
},
{
"id": "6ea1650a-27f2-c363-c65a-579a96bdce86",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/channels/channel",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641063030,
"name": "Channel Info",
"description": "Details about an individual channel.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "09f71727-c84d-da47-df98-6dc1e3a46c40"
},
{
"id": "7945ddcb-9096-8a46-bea9-8e3f7bea4a7c",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/connections/name",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457640149831,
"name": "Get Individual connection",
"description": "An individual connection.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "77c83f18-507b-f103-71d7-bc47c706b05b"
},
{
"id": "7be1b6fc-24c6-3767-5992-17f9c7a70328",
"headers": "Authorization: {{auth}}\nContent-Type: application/json\n",
"url": "{{host}}/api/queues/%2f/queue-name/get",
"preRequestScript": "",
"pathVariables": {},
"method": "POST",
"data": [],
"dataMode": "raw",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641255252,
"name": "Get message from queue",
"description": "Get messages from a queue. (This is not an HTTP GET as it will alter the state of the queue.) You should post a body looking like:\n\n<blockquote>\n{<br>\n\"count\":5,<br>\n\"requeue\":true,<br>\n\"encoding\":\"auto\",<br>\n\"truncate\":50000<br>\n}\n</blockquote>\n\n<ul>\n<li>count controls the maximum number of messages to get. You may get fewer messages than this if the queue cannot immediately provide them.</li>\n<li>requeue determines whether the messages will be removed from the queue. If requeue is true they will be requeued - but their redelivered flag will be set.</li>\n<li>encoding must be either \"auto\" (in which case the payload will be returned as a string if it is valid UTF-8, and base64 encoded otherwise), or \"base64\" (in which case the payload will always be base64 encoded).</li>\n<li>If truncate is present it will truncate the message payload if it is larger than the size given (in bytes).</li>\n</ul>\n\ntruncate is optional; all other keys are mandatory.\n\nPlease note that the get path in the HTTP API is intended for diagnostics etc - it does not implement reliable delivery and so should be treated as a sysadmin's tool rather than a general API for messaging.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "ba243e82-e976-6eb4-9d8d-a241fae279ba",
"rawModeData": " {\n\"count\":5,\n\"requeue\":true,\n\"encoding\":\"auto\",\n\"truncate\":50000\n}"
},
{
"id": "86406311-01d4-cabd-8089-c56e6969f76e",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/parameters/component/vhost/name",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641416451,
"name": "Get an individual parameter",
"description": "Get an individual parameter",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "8790c3b0-daeb-28d0-c263-3e2d9ad0b9b2",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/whoami",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641367995,
"name": "Logged In User Info",
"description": "Details of the currently authenticated user.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "5edb4b68-67fa-0a2f-6868-444fb3e29b82"
},
{
"id": "8a6279a1-2c09-c354-7b03-9fcfaa0080c5",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/vhosts/%2f/connections",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457640141472,
"name": "Open vhost connections",
"description": "A list of all open connections in a specific vhost.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "77c83f18-507b-f103-71d7-bc47c706b05b"
},
{
"id": "8d686177-406d-3add-3c4b-da6bf8957e18",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/channels",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641050462,
"name": "List All Open Channels",
"description": "A list of all open channels.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "09f71727-c84d-da47-df98-6dc1e3a46c40"
},
{
"id": "94421399-701e-724d-0f85-1fca237af4c6",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/connections/name/channels",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457640163172,
"name": "List Channels on Connection",
"description": "List of all channels for a given connection.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": [],
"folder": "09f71727-c84d-da47-df98-6dc1e3a46c40"
},
{
"id": "9a613d98-a364-f853-69cf-1543bab4d731",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/bindings/vhost/e/source/e/destination",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641291948,
"name": "Get individual exchange/exchange binding Advance",
"description": "Get individual binding between an exchange and a queue. \n\nThe props part of the URI is a \"name\" for the binding composed of its routing key and a hash of its arguments.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "9f9c72bf-70c4-02fb-2349-7a997f0e7f5a",
"headers": "Authorization: {{auth}}\n",
"url": "{{host}}/api/parameters/component",
"preRequestScript": "",
"pathVariables": {},
"method": "GET",
"data": [],
"dataMode": "params",
"version": 2,
"tests": "",
"currentHelper": "normal",
"helperAttributes": {},
"time": 1457641407380,
"name": "List of all parameter/component",
"description": "A list of all parameters for a given component.",
"collectionId": "637a1895-9aff-af27-71cf-99efe1380937",
"responses": []
},
{
"id": "a58a3319-3511-162f-9999-1641a8fd3cda",
"headers": "Authorization: {{auth}}\n",