forked from ldr709/slack-backup-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slack-postman.json
3533 lines (3174 loc) · 208 KB
/
slack-postman.json
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": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"name": "Slack Web API",
"description": "",
"order": [
],
"folders": [
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152997690,
"id": "7b5eba1b-db8a-ed4d-d577-0a01cd28b45a",
"name": "channels",
"description": "Get info on your team's Slack channels, create or archive channels, invite users, set the topic and purpose, and mark a channel as read.",
"order": [
"418659cf-0efd-c906-c654-b29383ba83d6",
"4e40b2f6-c272-4701-6383-796e3ca4797b",
"9d209352-f2da-189d-a6a5-3d4b6ee0d854",
"8c31b723-a664-495a-b409-69435b1b2a26",
"51859f72-c569-b4fb-9c29-816835a694ee",
"609cf608-d068-cec4-0f24-9b28d0f6b52c",
"864a1d8d-73ec-62c0-c596-a00846959ad6",
"277ab8e9-94fa-a0af-56fc-fa13c14f42ba",
"71486af5-1270-a98d-6da8-3cd57fb154ca",
"7dce9acc-6e44-23ce-d4da-1b856bb5cd58",
"e71fcd52-e4d1-b04a-3abf-a8926ae5bac6",
"4901bf11-d363-1b1a-fb54-fd8c7f4cc069",
"4221aa61-cddf-9eb1-ceb1-61b6f911c62f",
"210a141e-e1fb-c162-2247-59b659a2e84a"
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152979109,
"id": "8027df84-e5f9-e47c-e888-f615662ce100",
"name": "api",
"description": "",
"order": [
"92ee7169-8b25-2182-728d-c169823dbf02"
]
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152991582,
"id": "9f45a6d5-3620-86d8-0fb4-02070226741a",
"name": "auth",
"description": "",
"order": [
"98ba9e10-94e4-94a6-9518-cecc32436945"
]
},
{
"id": "51f8466f-b43f-c072-0e92-63ae6cc6fc80",
"name": "chat.delete",
"description": "Post chat messages to Slack.",
"order": [
"fea9a608-cd7f-343f-e59b-18f910292e7d",
"48a9805c-6385-4476-ca15-a5db5db21c1d",
"82a2b1d0-6b50-2d4b-15c0-e4f6abafde2f"
],
"owner": "219689",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "e84e608a-7735-d155-5151-50653fc55ac4",
"name": "dnd",
"description": "Adjust and view Do Not Disturb settings for team members",
"order": [
"c25e6676-802d-7d86-b6d7-7ceadad9819b",
"09be5188-3b1e-b152-ad7f-775a14670f18",
"6f4e6814-4f37-3044-6b03-da91adbed7c5",
"b38e33e2-4882-c222-ca8e-126caa226bad",
"17054eb0-f5f5-c2eb-46a4-68185dbf9eb5"
],
"owner": "219689",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "6e9f0a94-2207-8beb-6a56-5b72943d795e",
"name": "emoji",
"description": "",
"order": [
"7a63d9d9-12e9-120d-54ca-afc3ef1ddcd0"
],
"owner": "219689"
},
{
"id": "aa19191a-13f8-6b78-030e-4195ecdd4700",
"name": "files.comments",
"description": "",
"order": [
"6b94e749-74f6-c555-28b3-a5343f8a36bf",
"ce8fe674-f6ab-fee0-081c-6a2748fda7ea",
"80c55a70-9f8d-3577-af07-2db7dec9bcf1"
],
"owner": "219689"
},
{
"id": "cd8b6f91-ceda-9c5d-d6de-326853cd1df4",
"name": "files",
"description": "Get info on files uploaded to Slack, upload new files to Slack.",
"order": [
"d70b99d3-05d3-5cfc-dde2-3cb070ab3c2c",
"0e93ad73-fd6c-9c1f-d50a-713f1dae73ec",
"85f7597a-f347-0b1f-8440-568f6fd41ce8",
"cb783e42-0456-7215-c437-79044db37635",
"73b6b32c-24bd-a881-b789-81394efcfbd5",
"14642aef-d24e-bd53-4585-713c22e88ed7"
],
"owner": "219689"
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152997690,
"id": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac",
"name": "groups",
"description": "Get info on your team's private channels.",
"order": [
"d038ef96-2fbc-2cb2-ed9e-5a2fdb91171d",
"0cd21558-3f57-0741-f55b-5118abd0c9af",
"18de69c0-f757-2e79-520a-0915bb982dcf",
"3d20124e-4255-c38f-33b1-d1db1c52d0f8",
"7c8e659e-0028-1d25-a3f1-5f9229d6983f",
"b094817a-2f00-559f-5140-810e5e5e63e5",
"28f46524-58bc-a49b-3503-c69393bfecb3",
"55102e00-db67-7ce9-9e7a-96c9ebf7179d",
"5461ce2d-fc8c-04e0-9dbb-e9b1fb727746",
"a941a0be-3434-d291-2eaa-c2fa3042fe00",
"314695f5-7ad4-e859-4e08-f75c86ffff9f",
"3fae2809-bb63-a18d-2c23-b57cef6c9a55",
"7575bc99-000e-0de7-2346-4fe788f633af",
"34e00678-a61c-09cf-fea5-8b98d15ed0cb",
"72d3421b-e931-ab3d-825d-a1124599ea0e",
"79298602-4231-fbec-d99d-b4c480163f2f"
],
"requests": [
{
"id": "d038ef96-2fbc-2cb2-ed9e-5a2fdb91171d",
"headers": "",
"url": "https://slack.com/api/channels.archive?token={{token}}&channel=C1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1457723721305,
"name": "channels.archive",
"description": "This method checks authentication and tells you who you are.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:identify) |\n| channel | C1234567890 | Required | Channel to archive |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 158453377,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac",
"collection": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"id": "18de69c0-f757-2e79-520a-0915bb982dcf",
"name": "channels.create",
"dataMode": "params",
"data": [
],
"rawModeData": null,
"descriptionFormat": "html",
"description": "This method is used to create a channel.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| name | mychannel | Required | Name of channel to create |",
"headers": "",
"method": "GET",
"pathVariables": {
},
"url": "https://slack.com/api/channels.create?token={{token}}&name=mychannel",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"createdAt": "2016-02-24T18:31:55.000Z",
"updatedAt": "2016-03-01T12:07:39.000Z",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"write": true,
"synced": true
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 153017841,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac",
"collection": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"id": "7c8e659e-0028-1d25-a3f1-5f9229d6983f",
"name": "channels.history",
"dataMode": "params",
"data": [
],
"rawModeData": null,
"descriptionFormat": null,
"description": "This method returns a portion of message events from the specified channel.\n\nTo read the entire history for a channel, call the method with no latest or oldest arguments, and then continue paging using the instructions below.\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-----------------------|--------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:history) |\n| channel | C1234567890 | Required | Channel to fetch history for. |\n| latest | 1234567890 | Optional, default=now | End of time range of messages to include in results. |\n| oldest | 1234567890 | Optional, default=0 | Start of time range of messages to include in results. |\n| inclusive | 1 | Optional, default=0 | Include messages with latest or oldest timestamp in results. |\n| count | 100 | Optional, default=100 | Number of messages to return, between 1 and 1000. |\n| unreads | 1 | Optional, default=0 | Includeunread_count_display in the output? |",
"headers": "",
"method": "GET",
"pathVariables": {
},
"url": "https://slack.com/api/channels.history?token={{token}}&channel=C1234567890&latest=1234567890.123456&oldest=1234567890.123456&inclusive=1&count=100&unreads=1",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"createdAt": "2016-02-24T18:44:12.000Z",
"updatedAt": "2016-02-24T18:45:35.000Z",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"write": true,
"synced": true
},
{
"id": "b094817a-2f00-559f-5140-810e5e5e63e5",
"headers": "",
"url": "https://slack.com/api/channels.info?token={{token}}&channel=C1234567890&latest=1234567890.123456&oldest=1234567890.123456&inclusive=1&count=100&unreads=1",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073046093,
"name": "channels.info",
"description": "This method returns information about a team channel.\n\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-----------------------|--------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: channels:read) |\n| channel | C1234567890 | Required | Channel to get info on. |\n",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "a45ce303-8a81-07e2-5537-a9cd1b87ecb9",
"headers": "",
"url": "https://slack.com/api/channels.join?token={{token}}&name=mychannel",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073041334,
"name": "channels.join",
"description": "This method is used to join a channel. If the channel does not exist, it is created.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| name | mychannel | Required | Name of channel to join |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac",
"isDeleted": true
},
{
"id": "55102e00-db67-7ce9-9e7a-96c9ebf7179d",
"headers": "",
"url": "https://slack.com/api/channels.kick?token={{token}}&channel=C1234567890&user=U1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073036928,
"name": "channels.kick",
"description": "This method allows a user to remove another member from a team channel.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | C1234567890 | Required | Channel to remove user from. |\n| user | U1234567890 | Required | User to remove from channel. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "5461ce2d-fc8c-04e0-9dbb-e9b1fb727746",
"headers": "",
"url": "https://slack.com/api/channels.leave?token={{token}}&channel=C1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073032456,
"name": "channels.leave",
"description": "This method is used to leave a channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | C1234567890 | Required | Channel to leave |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "a941a0be-3434-d291-2eaa-c2fa3042fe00",
"headers": "",
"url": "https://slack.com/api/channels.list?token={{token}}&exclude_archived=0",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073028804,
"name": "channels.list",
"description": "This method returns a list of all channels in the team. This includes channels the caller is in, channels they are not currently in, and archived channels but does not include private channels. The number of (non-deactivated) members in each channel is also returned.\n\nTo retrieve a list of private channels, use groups.list\n\n| Argument | Example | Required | Description |\n|------------------|---------------------|---------------------|-----------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:read) |\n| exclude_archived | 1 | Optional, default=0 | Don't return archived channels. | |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "314695f5-7ad4-e859-4e08-f75c86ffff9f",
"headers": "",
"url": "https://slack.com/api/channels.mark?token={{token}}&channel=C1234567890&ts=1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073023100,
"name": "channels.mark",
"description": "This method moves the read cursor in a channel.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: channels:write) |\n| channel | C1234567890 | Required | Channel to set reading cursor in. |\n| ts | 1234567890 | Required | Timestamp of the most recently seen message. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "7575bc99-000e-0de7-2346-4fe788f633af",
"headers": "",
"url": "https://slack.com/api/channels.rename?token={{token}}&channel=C1234567890&name=channel-name",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073018646,
"name": "channels.rename",
"description": "This method renames a team channel.\n\nThe only people who can rename a channel are team admins, or the person that originally created the channel. Others will receive a \"not_authorized\" error.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | C1234567890 | Required | Channel to rename |\n| name | | Required | New name for channel. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "34e00678-a61c-09cf-fea5-8b98d15ed0cb",
"headers": "",
"url": "https://slack.com/api/channels.setPurpose?token={{token}}&channel=C1234567890&purpose=My Purpose",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073129817,
"name": "channels.setPurpose",
"description": "This method is used to change the purpose of a channel. The calling user must be a member of the channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | C1234567890 | Required | Channel to set the purpose of |\n| purpose | My Purpose | Required | The new purpose |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "72d3421b-e931-ab3d-825d-a1124599ea0e",
"headers": "",
"url": "https://slack.com/api/channels.setTopic?token={{token}}&channel=C1234567890&topic=The New Topic",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073205270,
"name": "channels.setTopic",
"description": "This method is used to change the topic of a channel. The calling user must be a member of the channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | C1234567890 | Required | Channel to set the topic of |\n| topic | My Topic | Required | The new topic |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
},
{
"id": "79298602-4231-fbec-d99d-b4c480163f2f",
"headers": "",
"url": "https://slack.com/api/channels.unarchive?token={{token}}&channel=C1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458073350655,
"name": "channels.unarchive",
"description": "This method unarchives a channel. The calling user is added to the channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: channels:write) |\n| channel | C1234567890 | Required | Channel to unarchive |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "cdbc1498-a1ea-9436-9fbf-06d82cc38fac"
}
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "ab37a4f1-f4a8-3d90-172f-e1220efc9638",
"name": "im",
"description": "Get info on your direct messages.",
"order": [
"36d358be-24b9-75e8-23ca-bd3cc1a026cf",
"5409d3f9-421c-4a59-5a6e-03b801f1bc94",
"74fecdc2-958b-7c55-d3aa-914023bba450",
"5b455104-00d4-6962-1456-5df28f944370",
"9715e074-5368-8470-9f12-6a2b8c3d0d6b"
],
"owner": "219689"
},
{
"id": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca",
"name": "mpim",
"description": "Get info on your multiparty direct messages.",
"order": [
"5b7dc19b-abc5-e1e9-f75f-82f85a9e47ec",
"88562cbd-0cb8-d35f-d051-e2f47627ad32",
"37fd6c5c-c6ef-f281-b028-e3e747b85fc3",
"8b856b7e-ca86-c726-2e0b-0184cb6376f4",
"0ccc6862-a9a1-05e5-5511-34eda33de0c5"
],
"owner": "219689",
"requests": [
{
"id": "5b7dc19b-abc5-e1e9-f75f-82f85a9e47ec",
"headers": "",
"url": "https://slack.com/api/im.close?token={{token}}&channel=D1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458080333845,
"name": "im.close",
"description": "This method closes a direct message channel.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: im:write) |\n| channel | D1234567890 | Required | Direct message channel to close. |\n",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca"
},
{
"id": "88562cbd-0cb8-d35f-d051-e2f47627ad32",
"headers": "",
"url": "https://slack.com/api/im.history?token={{token}}&channel=D1234567890&latest=1234567890.123456\t&oldest=now&inclusive=0&count=100&unreads=0",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458080476145,
"name": "im.history",
"description": "This method returns a portion of messages/events from the specified direct message channel. To read the entire history for a direct message channel, call the method with no latest or oldest arguments, and then continue paging using the instructions below.\n\n\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-----------------------|--------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: im:history) |\n| channel | D1234567890 | Required | Direct message channel to fetch history for. |\n| latest | 1234567890.123456 | Optional, default=now | End of time range of messages to include in results. |\n| oldest | 1234567890.123456 | Optional, default=0 | Start of time range of messages to include in results. |\n| inclusive | 1 | Optional, default=0 | Include messages with latest or oldest timestamp in results. |\n| count | 100 | Optional, default=100 | Number of messages to return, between 1 and 1000. |\n| unreads | 1 | Optional, default=0 | Include unread_count_display in the output? |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca"
},
{
"id": "37fd6c5c-c6ef-f281-b028-e3e747b85fc3",
"headers": "",
"url": "https://slack.com/api/im.read?token={{token}}",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458080505112,
"name": "im.list",
"description": "This method closes a direct message channel.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: `im:read`) |\n",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca"
},
{
"id": "8b856b7e-ca86-c726-2e0b-0184cb6376f4",
"headers": "",
"url": "https://slack.com/api/im.mark?token={{token}}&channel=D1234567890&ts=1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458080618970,
"name": "im.mark",
"description": "This method moves the read cursor in a direct message channel.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|--------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: im:write) |\n| channel | D1234567890 | Required | Direct message channel to set reading cursor in. |\n| ts | 1234567890 | Required | Timestamp of the most recently seen message. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca"
},
{
"id": "0ccc6862-a9a1-05e5-5511-34eda33de0c5",
"headers": "",
"url": "https://slack.com/api/im.open?token={{token}}&channel=D1234567890&user=U1234567890",
"preRequestScript": "",
"pathVariables": {
},
"method": "GET",
"data": [
],
"dataMode": "params",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458080742167,
"name": "im.open",
"description": "This method opens a direct message channel.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: im:write) |\n| user | U1234567890 | Required | User to open a direct message channel with. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"synced": true,
"folder": "6daf0b10-3f0d-a8a1-8c86-33f84b39f6ca"
}
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152991582,
"id": "d258a535-b4a4-a3eb-e2ac-9b00d85c4a2c",
"name": "oauth",
"description": "This method allows you to exchange a temporary OAuth code for an API access token. This is used as part of the OAuth authentication flow.\n\nAs discussed in RFC 6749 it is possible to supply the Client ID and Client Secret using the HTTP Basic authentication scheme. If HTTP Basic authentication is used you do not need to supply the client_id and client_secret parameters as part of the request.\n\nKeep your tokens secure. Do not share tokens with users or anyone else.\n\n| Argument | Example | Required | Description |\n|---------------|--------------------|----------|-----------------------------------------------------------------|\n| client_id | 4b39e9-752c4 | Required | Issued when you created your application. |\n| client_secret | 33fea0113f5b1 | Required | Issued when you created your application. |\n| code | ccdaa72ad | Required | The code param returned via the OAuth callback. |\n| redirect_uri | http://example.com | Optional | This must match the originally submitted URI (if one was sent). |",
"order": [
"226ef3ac-c560-5249-87ab-241d97c9384d"
],
"requests": [
{
"owner": "219689",
"lastUpdatedBy": "219689",
"lastRevision": 152999705,
"folder": "d258a535-b4a4-a3eb-e2ac-9b00d85c4a2c",
"collection": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"id": "226ef3ac-c560-5249-87ab-241d97c9384d",
"name": "auth.test",
"dataMode": "params",
"data": [
],
"rawModeData": null,
"descriptionFormat": "html",
"description": "This method checks authentication and tells you who you are.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:identify) |",
"headers": "",
"method": "GET",
"pathVariables": {
},
"url": "https://slack.com/api/auth.test?token={{token}}",
"preRequestScript": "",
"tests": "",
"currentHelper": "normal",
"helperAttributes": "{}",
"createdAt": "2016-02-24T18:21:05.000Z",
"updatedAt": "2016-02-24T18:26:03.000Z",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"write": true,
"synced": true
}
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "b5553971-c671-3a5b-2bb2-828adf513eb7",
"name": "pins",
"description": "",
"order": [
"aca3fb12-fd3a-effe-d8ce-be8ad6f175f9",
"0e86e908-556e-0960-5ec1-7f826fed08ea",
"ec089e74-0ec7-ef1a-dd3c-b98f124faaff"
],
"owner": "219689"
},
{
"id": "9bd7f429-4a7d-72e2-3d9a-b3c7ba74074d",
"name": "reactions",
"description": "",
"order": [
"6462f01e-7c81-077d-87f7-f8313075148e",
"63a92ef2-7367-cd2c-50a7-8a34b0883075",
"b659b5e5-f890-5fea-76ee-48a7027a8069",
"e3ccccfb-f485-a78a-fc91-5a65bae231fa"
],
"owner": "219689",
"requests": [
{
"id": "6462f01e-7c81-077d-87f7-f8313075148e",
"headers": "",
"url": "https://slack.com/api/pins.add?token={{token}}&channel=C1234567890&file=F1234567890&file_comment=Fc1234567890×tamp=1234567890.123456",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081769555,
"name": "pins.add",
"description": "This method pins an item (file, file comment, channel message, or group message) to a particular channel. The channel argument is required and one of file, file_comment, or timestamp must also be specified.\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:write) |\n| channel | C1234567890 | Required | Channel to pin the item in. |\n| file | F1234567890 | Optional | File to pin. |\n| file_comment | Fc1234567890 | Optional | File comment to pin. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to pin. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "9bd7f429-4a7d-72e2-3d9a-b3c7ba74074d"
},
{
"id": "b659b5e5-f890-5fea-76ee-48a7027a8069",
"headers": "",
"url": "https://slack.com/api/pins.list?token={{token}}&channel=C1234567890",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081839968,
"name": "pins.list",
"description": "This method lists the items pinned to a channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|--------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:read) |\n| channel | C1234567890 | Required | Channel to get pinned items for. | ",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "9bd7f429-4a7d-72e2-3d9a-b3c7ba74074d"
},
{
"id": "e3ccccfb-f485-a78a-fc91-5a65bae231fa",
"headers": "",
"url": "https://slack.com/api/pins.remove?token={{token}}&channel=C1234567890&file=F1234567890&file_comment=Fc1234567890×tamp=1234567890.123456\t",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081904231,
"name": "pins.remove",
"description": "This method un-pins an item (file, file comment, channel message, or group message) from a channel. The channel argument is required and one of file, file_comment, or timestamp must also be specified.\n\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:write) |\n| channel | C1234567890 | Required | Channel where the item is pinned to. |\n| file | F1234567890 | Optional | File to un-pin. |\n| file_comment | Fc1234567890 | Optional | File comment to un-pin. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to un-pin. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "9bd7f429-4a7d-72e2-3d9a-b3c7ba74074d"
}
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "e9997504-9ffc-c679-8a01-c908b7672f90",
"name": "rtm",
"description": "",
"order": [
"fe519060-8f37-bb5a-4412-5f476d3c71fe"
],
"owner": "219689"
},
{
"id": "0501b080-d860-69ce-060b-b7d6839dae09",
"name": "search",
"description": "Search your team's files and messages.",
"order": [
"9863beb4-5344-93af-661a-23cd8c2d932f",
"1277ba24-d88c-875d-d389-801ba7cc04e6",
"35ff1599-2c99-05af-5777-20b2d08ced26"
],
"owner": "219689"
},
{
"id": "8c5191bb-e6f4-1cef-083c-f9be45e777f7",
"name": "stars",
"description": "",
"order": [
"295d54f7-1783-03aa-1584-57ba93d76884",
"29643db9-26e1-4ba9-c350-e130185b970e",
"c2b7de30-ce31-3c2e-a87e-eab2b2d69c85"
],
"owner": "219689",
"requests": [
{
"id": "295d54f7-1783-03aa-1584-57ba93d76884",
"headers": "",
"url": "https://slack.com/api/pins.add?token={{token}}&channel=C1234567890&file=F1234567890&file_comment=Fc1234567890×tamp=1234567890.123456",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081769555,
"name": "pins.add",
"description": "This method pins an item (file, file comment, channel message, or group message) to a particular channel. The channel argument is required and one of file, file_comment, or timestamp must also be specified.\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:write) |\n| channel | C1234567890 | Required | Channel to pin the item in. |\n| file | F1234567890 | Optional | File to pin. |\n| file_comment | Fc1234567890 | Optional | File comment to pin. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to pin. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "8c5191bb-e6f4-1cef-083c-f9be45e777f7"
},
{
"id": "29643db9-26e1-4ba9-c350-e130185b970e",
"headers": "",
"url": "https://slack.com/api/pins.list?token={{token}}&channel=C1234567890",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081839968,
"name": "pins.list",
"description": "This method lists the items pinned to a channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|--------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:read) |\n| channel | C1234567890 | Required | Channel to get pinned items for. | ",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "8c5191bb-e6f4-1cef-083c-f9be45e777f7"
},
{
"id": "c2b7de30-ce31-3c2e-a87e-eab2b2d69c85",
"headers": "",
"url": "https://slack.com/api/pins.remove?token={{token}}&channel=C1234567890&file=F1234567890&file_comment=Fc1234567890×tamp=1234567890.123456\t",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458081904231,
"name": "pins.remove",
"description": "This method un-pins an item (file, file comment, channel message, or group message) from a channel. The channel argument is required and one of file, file_comment, or timestamp must also be specified.\n\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: pins:write) |\n| channel | C1234567890 | Required | Channel where the item is pinned to. |\n| file | F1234567890 | Optional | File to un-pin. |\n| file_comment | Fc1234567890 | Optional | File comment to un-pin. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to un-pin. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "8c5191bb-e6f4-1cef-083c-f9be45e777f7"
}
],
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997"
},
{
"id": "eacf975a-e545-8b49-0e71-40e024393857",
"name": "team",
"description": "",
"order": [
"4438d825-10aa-e083-4edf-1b96f4279a58",
"9117af8a-5136-d97f-44e9-8df4c9cdeb23",
"cadb3e93-4cf9-3a35-95f3-f06d46166399"
],
"owner": "219689"
},
{
"id": "b1e0ee3e-8393-fcb5-37f8-2216b8da130c",
"name": "usergroups",
"description": "",
"order": [
"4ac7ca61-9040-b32d-7305-fb711032e6a9",
"42e00e07-0368-ea8c-1117-e26903d10818",
"64e0d610-76a0-f3a4-a91a-0833a6702661",
"af5044ad-0091-f733-2a11-fd50c3f2a3ac",
"cd76cad2-cac2-6328-c2f8-b1d76a051d13"
],
"owner": "219689"
},
{
"id": "5405b516-ea91-a21f-63da-b046fd8c6aa6",
"name": "usergroups.users",
"description": "",
"order": [
"84686c90-2a4d-58f4-fc7b-375276b2bbb4",
"ffffed35-b133-572c-ada8-a62b58409937"
],
"owner": "219689",
"requests": [
{
"id": "7d159a5d-e45f-4549-fa32-408b028f4534",
"headers": "",
"url": "https://slack.com/api/usergroups.create?token={{token}}&name=My Test Team&handle=&description&channels&include_count=1",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458083279183,
"name": "usergroups.create",
"description": "This method is used to create a user group.\n\n| Argument | Example | Required | Description |\n|---------------|---------------------|----------|---------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: usergroups:write) |\n| name | My Test Team | Required | A name for the user group. Must be unique among user groups. |\n| handle | | Optional | A mention handle. Must be unique among channels, users and user groups. |\n| description | | Optional | A short description of the user group. |\n| channels | | Optional | A comma separated string of encoded channel IDs for which the user group uses as a default. |\n| include_count | 1 | Optional | Include the number of users in each user group. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "5405b516-ea91-a21f-63da-b046fd8c6aa6",
"isDeleted": true
},
{
"id": "f50ca631-1278-ed49-f072-be4354f05378",
"headers": "",
"url": "https://slack.com/api/usergroups.disable?token={{token}}&usergroup=S0604QSJC&include_count=1",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458083334876,
"name": "usergroups.disable",
"description": "This method disables an existing user group.\n\n\n| Argument | Example | Required | Description |\n|---------------|---------------------|----------|---------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: usergroups:write) |\n| usergroup | S0604QSJC | Required | The encoded ID of the user group to disable. |\n| include_count | 1 | Optional | Include the number of users in the user group. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "5405b516-ea91-a21f-63da-b046fd8c6aa6",
"isDeleted": true
},
{
"id": "c4eec93a-8919-f61a-00e3-b73ff75056c9",
"headers": "",
"url": "https://slack.com/api/usergroups.enable?token={{token}}&usergroup=S0604QSJC&include_count=1",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458083528756,
"name": "usergroups.enable",
"description": "This method enables a user group which was previously disabled.\n\n\n| Argument | Example | Required | Description |\n|---------------|---------------------|----------|---------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: usergroups:write) |\n| usergroup | S0604QSJC | Required | The encoded ID of the user group to enable. |\n| include_count | 1 | Optional | Include the number of users in the user group. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "5405b516-ea91-a21f-63da-b046fd8c6aa6",
"isDeleted": true
},
{
"id": "84686c90-2a4d-58f4-fc7b-375276b2bbb4",
"headers": "",
"url": "https://slack.com/api/usergroups.list?token={{token}}&include_disabled=1&include_count=1&include_users=1",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",
"time": 1458083419891,
"name": "usergroups.list",
"description": "This method returns a list of all user groups in the team. This can optionally include disabled user groups.\n| Argument | Example | Required | Description |\n|------------------|---------------------|----------|--------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: usergroups:read) |\n| include_disabled | 1 | Optional | Include disabled user groups. |\n| include_count | 1 | Optional | Include the number of users in each user group. |\n| include_users | 1 | Optional | Include the list of users for each user group. |",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"responses": [
],
"synced": true,
"folder": "5405b516-ea91-a21f-63da-b046fd8c6aa6"
},
{
"id": "ffffed35-b133-572c-ada8-a62b58409937",
"headers": "",
"url": "https://slack.com/api/usergroups.update?token={{token}}&usergroup=S0604QSJC&name=My Test Team\t&handle=&description=&channels&include_count=1",
"preRequestScript": null,
"pathVariables": {
},
"method": "GET",
"data": null,
"dataMode": "params",
"tests": null,
"currentHelper": "normal",
"helperAttributes": "{}",