-
Notifications
You must be signed in to change notification settings - Fork 3
/
requests.json
1515 lines (1515 loc) · 119 KB
/
requests.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
[{
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "dnd.endSnooze",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/dnd.endSnooze?token={{token}}",
"description": "Ends the current user's snooze mode immediately.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|--------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: dnd:write) |",
"id": "09be5188-3b1e-b152-ad7f-775a14670f18",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074503799,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "mpim.open",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/mpim.open?token={{token}}&users=U1234567890,U2345678901,U345678901",
"description": "This method opens a multiparty direct message.\n\nOpening a multiparty direct message takes a list of up-to 8 encoded user ids. If there is no MPIM already created that includes that exact set of members, a new MPIM will be created. Subsequent calls to mpim.open with the same set of users will return the already existing MPIM conversation.\n\n| Argument | Example | Required | Description |\n|----------|-------------------------------------|----------|-----------------------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: mpim:write) |\n| users | U1234567890,U2345678901,U3456789012 | Required | Comma separated lists of users. The ordering of the users is preserved whenever a MPIM group is returned. |er a MPIM group is returned. |",
"id": "0ccc6862-a9a1-05e5-5511-34eda33de0c5",
"headers": "",
"currentHelper": "normal",
"time": 1458081155133,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.close",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.close?token={{token}}&channel=G1234567890",
"description": "This method closes a private channel.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to close |",
"id": "0cd21558-3f57-0741-f55b-5118abd0c9af",
"headers": "",
"currentHelper": "normal",
"time": 1458076562600,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "pins.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/pins.list?token={{token}}&channel=C1234567890",
"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. | ",
"id": "0e86e908-556e-0960-5ec1-7f826fed08ea",
"headers": "",
"currentHelper": "normal",
"time": 1458081839968,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.info",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.info?token={{token}}&file=F1234567890&count=100&page=1",
"description": "This method returns information about a file in your team.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|-----------------------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:read) |\n| file | F2147483862 | Required | Specify a file by providing its ID. |\n| count | 20 | Optional, default=100 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "0e93ad73-fd6c-9c1f-d50a-713f1dae73ec",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458075539896,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "search.files",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/search.files?token=xxxx-xxxxxxxxx-xxxx\t&query=pickleface&sort=timestamp&sort_dir=asc&highlight=1&count=20&page=1",
"description": "This method returns files matching a search query.\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-------------------------|------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: search:read) |\n| query | pickleface | Required | Search query. May contains booleans, etc. |\n| sort | timestamp | Optional, default=score | Return matches sorted by either score or timestamp. |\n| sort_dir | asc | Optional, default=desc | Change sort direction to ascending (asc) or descending (desc). |\n| highlight | 1 | Optional | Pass a value of 1 to enable query highlight markers (see below). |\n| count | 20 | Optional, default=20 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "1277ba24-d88c-875d-d389-801ba7cc04e6",
"headers": "",
"currentHelper": "normal",
"time": 1458082560527,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.upload",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.upload?token={{token}}&file=&content&filetype=php&filename=foo.txt&title=My File&initial_comment=Best!\t&channels=C1234567890\t",
"description": "This method allows you to create or upload an existing file.\n| Argument | Example | Required | Description |\n|-----------------|---------------------|----------|-----------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:write:user) |\n| file | ... | Optional | File contents via multipart/form-data. |\n| content | ... | Optional | File contents via a POST var. |\n| filetype | php | Optional | Slack-internal file type identifier. |\n| filename | foo.txt | Required | Filename of file. |\n| title | My File | Optional | Title of file. |\n| initial_comment | Best! | Optional | Initial comment to add to file. |\n| channels | C1234567890 | Optional | Comma-separated list of channel names or IDs where the file will be shared. |",
"id": "14642aef-d24e-bd53-4585-713c22e88ed7",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458075897904,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "dnd.teamInfo",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/dnd.teamInfo?token={{token}}&users=U1234,U4567",
"description": "Provides information about the current Do Not Disturb settings for users of a Slack team.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: dnd:read) |\n| users | U1234,U4567 | Optional | Comma-separated list of users to fetch Do Not Disturb status for |",
"id": "17054eb0-f5f5-c2eb-46a4-68185dbf9eb5",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074717290,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.create",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.create?token={{token}}&name=mychannel",
"description": "This method creates a private channel.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| name | mychannel | Required | Name of private channel to create |",
"id": "18de69c0-f757-2e79-520a-0915bb982dcf",
"headers": "",
"currentHelper": "normal",
"time": 1458076608002,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.unarchive",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.unarchive?token={{token}}&channel=C1234567890",
"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 |",
"id": "210a141e-e1fb-c162-2247-59b659a2e84a",
"headers": "",
"currentHelper": "normal",
"time": 1458073350655,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "oauth.access",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/oauth.access?client_id=4b39e9-752c4&client_secret=33fea0113f5b&code=ccdaa72ad&redirect_uri=http://example.com",
"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). |",
"id": "226ef3ac-c560-5249-87ab-241d97c9384d",
"headers": "",
"currentHelper": "normal",
"time": 1458081356818,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.leave",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.leave?token={{token}}&channel=C1234567890",
"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 |",
"id": "277ab8e9-94fa-a0af-56fc-fa13c14f42ba",
"headers": "",
"currentHelper": "normal",
"time": 1458073032456,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.invite",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.invite?token={{token}}&channel=G1234567890&user=U1234567890",
"description": "This method is used to invite a user to a private channel. The calling user must be a member of the private channel.\n\nTo invite a new member to a private channel without giving them access to the archives of the private channel, call the groups.createChild method before inviting.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: `groups:write`) |\n| channel | G1234567890 | Required | Private hannel to invite user to. |\n| user | U1234567890 | Required | User to invite to channel. |",
"id": "28f46524-58bc-a49b-3503-c69393bfecb3",
"headers": "",
"currentHelper": "normal",
"time": 1458076964375,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "stars.add",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/stars.add?token={{token}}&file=F1234567890&file_comment=Fc1234567890&channel=C1234567890×tamp=1234567890.123456",
"description": "This method adds a star to an item (message, file, file comment, channel, private group, or DM) on behalf of the authenticated user. One of file, file_comment, channel, or the combination of channel and timestamp must be specified.\n\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|-------------------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: stars:write) |\n| file | F1234567890 | Optional | File to add star to. |\n| file_comment | Fc1234567890 | Optional | File comment to add star to. |\n| channel | C1234567890 | Optional | Channel to add star to, or channel where the message to add star to was posted (used with timestamp). |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to add star to. |",
"id": "295d54f7-1783-03aa-1584-57ba93d76884",
"headers": "",
"currentHelper": "normal",
"time": 1458082778493,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "stars.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/stars.list?token={{token}}&users=U1234567890&count=100&page=1",
"description": "This method lists the items starred by a user.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|-----------------------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: stars:read) |\n| user | U1234567890 | Optional | Show stars by this user. Defaults to the authed user. |\n| count | 20 | Optional, default=100 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "29643db9-26e1-4ba9-c350-e130185b970e",
"headers": "",
"currentHelper": "normal",
"time": 1458082852291,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.mark",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.mark?token={{token}}&channel=G1234567890&ts=1234567890",
"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: `groups:write`) |\n| channel | C1234567890 | Required | Private hannel to set reading cursor in. |\n| ts | 1234567890 | Required | Timestamp of the most recently seen message. |",
"id": "314695f5-7ad4-e859-4e08-f75c86ffff9f",
"headers": "",
"currentHelper": "normal",
"time": 1458077174103,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.setPurpose",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.setPurpose?token={{token}}&channel=G1234567890&purpose=My Purpose",
"description": "This method is used to change the purpose of a private channel. The calling user must be a member of the private channel.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to set the purpose of |\n| purpose | My Purpose | Required | The new purpose |",
"id": "34e00678-a61c-09cf-fea5-8b98d15ed0cb",
"headers": "",
"currentHelper": "normal",
"time": 1458077322156,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "search.messages",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/search.messages?token=xxxx-xxxxxxxxx-xxxx\t&query=pickleface&sort=timestamp&sort_dir=asc&highlight=1&count=20&page=1",
"description": "This method returns messages matching a search query.\n\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-------------------------|------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: search:read) |\n| query | pickleface | Required | Search query. May contains booleans, etc. |\n| sort | timestamp | Optional, default=score | Return matches sorted by either score or timestamp. |\n| sort_dir | asc | Optional, default=desc | Change sort direction to ascending (asc) or descending (desc). |\n| highlight | 1 | Optional | Pass a value of 1 to enable query highlight markers (see below). |\n| count | 20 | Optional, default=20 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "35ff1599-2c99-05af-5777-20b2d08ced26",
"headers": "",
"currentHelper": "normal",
"time": 1458082669719,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "im.close",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/im.close?token={{token}}&channel=D1234567890",
"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",
"id": "36d358be-24b9-75e8-23ca-bd3cc1a026cf",
"headers": "",
"currentHelper": "normal",
"time": 1458080333845,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "mpim.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/mpim.read?token={{token}}",
"description": "This method returns a list of all multiparty direct message channels that the user has.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: `mpim:read`) |\n",
"id": "37fd6c5c-c6ef-f281-b028-e3e747b85fc3",
"headers": "",
"currentHelper": "normal",
"time": 1458080890319,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.createChild",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.createChild?token={{token}}&channel=G1234567890",
"description": "This method takes an existing private channel and performs the following steps:\n\nRenames the existing private channel (from \"example\" to \"example-archived\").\nArchives the existing private channel.\nCreates a new private channel with the name of the existing private channel.\nAdds all members of the existing private channel to the new private channel.\nThis is useful when inviting a new member to an existing private channel while hiding all previous chat history from them. In this scenario you can call `groups.createChild` followed by `groups.invite`.\n\nThe new private channel will have a special `parent_group` property pointing to the original archived private channel. This will only be returned for members of both private channels, so will not be visible to any newly invited members.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to clone and archive |",
"id": "3d20124e-4255-c38f-33b1-d1db1c52d0f8",
"headers": "",
"currentHelper": "normal",
"time": 1458076700319,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.open",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.open?token={{token}}&channel=G1234567890",
"description": "This method opens a private channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: `groups:write`) |\n| channel | C1234567890 | Required | Private channel to open |\n",
"id": "3fae2809-bb63-a18d-2c23-b57cef6c9a55",
"headers": "",
"currentHelper": "normal",
"time": 1458077239057,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.archive",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.archive?token={{token}}&channel=C1234567890",
"description": "This method archives a pubic channel.\n\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 |",
"id": "418659cf-0efd-c906-c654-b29383ba83d6",
"headers": "",
"currentHelper": "normal",
"time": 1457723721305,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.setTopic",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.setTopic?token={{token}}&channel=C1234567890&topic=The New Topic",
"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 |",
"id": "4221aa61-cddf-9eb1-ceb1-61b6f911c62f",
"headers": "",
"currentHelper": "normal",
"time": 1458073205270,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "usergroups.disable",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/usergroups.disable?token={{token}}&usergroup=S0604QSJC&include_count=1",
"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. |",
"id": "42e00e07-0368-ea8c-1117-e26903d10818",
"headers": "",
"currentHelper": "normal",
"time": 1458083334876,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "team.accessLogs",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/team.accessLogs?token={{token}}&count=100&page=1",
"description": "This method is used to get the access logs for users on a team.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|-----------------------|----------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: admin) |\n| count | 20 | Optional, default=100 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "4438d825-10aa-e083-4edf-1b96f4279a58",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458083018458,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "chat.postMessage",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/chat.postMessage?token={{token}}&channel=C1234567890&text=Hello worlo&parse=full&link_names=1&attachments=[{\"pretext\": \"pre-hello\", \"text\": \"text-world\"}]&unfurl_links=true&unfurl_media=false&username=My Bot&as_user=true&icon_url=http://lorempixel.com/48/48&icon_emoji=:chart_with_upwards_trend:",
"description": "This method posts a message to a public channel, private group, or IM channel.\n\n\n| Argument | Example | Required | Description |\n|--------------|--------------------------------------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:chat:write:bot orchat:write:user) |\n| channel | C1234567890 | Required | Channel, private group, or IM channel to send message to. Can be an encoded ID, or a name. |\n| text | Hello world | Required | Text of the message to send. |\n| parse | full | Optional | Change how messages are treated. Defaults tonone. |\n| link_names | 1 | Optional | Find and link channel names and usernames. |\n| attachments | [{\"pretext\": \"pre-hello\", \"text\": \"text-world\"}] | Optional | Structured message attachments. |\n| unfurl_links | TRUE | Optional | Pass true to enable unfurling of primarily text-based content. |\n| unfurl_media | FALSE | Optional | Pass false to disable unfurling of media content. |\n| username | My Bot | Optional | Set your bot's user name. Must be used in conjunction withas_user set to false, otherwise ignored. |\n| as_user | TRUE | Optional | Pass true to post the message as the authed user, instead of as a bot. Defaults to false. |\n| icon_url | http://lorempixel.com/48/48 | Optional | URL to an image to use as the icon for this message. Must be used in conjunction withas_user set to false, otherwise ignored. |\n| icon_emoji | :chart_with_upwards_trend: | Optional | emoji to use as the icon for this message. Overrides icon_url. Must be used in conjunction withas_user set to false, otherwise ignored. |",
"id": "48a9805c-6385-4476-ca15-a5db5db21c1d",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458073986694,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.setPurpose",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.setPurpose?token={{token}}&channel=C1234567890&purpose=My Purpose",
"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 |",
"id": "4901bf11-d363-1b1a-fb54-fd8c7f4cc069",
"headers": "",
"currentHelper": "normal",
"time": 1458073129817,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "usergroups.create",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/usergroups.create?token={{token}}&name=My Test Team&handle=&description&channels&include_count=1",
"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. |",
"id": "4ac7ca61-9040-b32d-7305-fb711032e6a9",
"headers": "",
"currentHelper": "normal",
"time": 1458083279183,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"name": "channels.create",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"pathVariables": {},
"currentHelper": "normal",
"method": "GET",
"headers": "",
"descriptionFormat": "html",
"rawModeData": null,
"url": "https://slack.com/api/channels.create?token={{token}}&name=mychannel",
"folder": "7b5eba1b-db8a-ed4d-d577-0a01cd28b45a",
"preRequestScript": "",
"data": [],
"id": "4e40b2f6-c272-4701-6383-796e3ca4797b",
"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 |"
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.invite",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.invite?token={{token}}&channel=C1234567890&user=U1234567890",
"description": "This method is used to invite a user to a channel. The calling user must be a member of the 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 invite user to. |\n| user | U1234567890 | Required | User to invite to channel. |",
"id": "51859f72-c569-b4fb-9c29-816835a694ee",
"headers": "",
"currentHelper": "normal",
"time": 1458076899426,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "im.history",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/im.history?token={{token}}&channel=D1234567890&latest=1234567890.123456\t&oldest=now&inclusive=0&count=100&unreads=0",
"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? |",
"id": "5409d3f9-421c-4a59-5a6e-03b801f1bc94",
"headers": "",
"currentHelper": "normal",
"time": 1458080476145,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.leave",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.leave?token={{token}}&channel=G1234567890",
"description": "This method is used to leave a private channel.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to leave |",
"id": "5461ce2d-fc8c-04e0-9dbb-e9b1fb727746",
"headers": "",
"currentHelper": "normal",
"time": 1458077098932,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.kick",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.kick?token={{token}}&channel=G1234567890&user=U1234567890",
"description": "This method allows a user to remove another member from a private channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to remove user from. |\n| user | U1234567890 | Required | User to remove from private channel. |",
"id": "55102e00-db67-7ce9-9e7a-96c9ebf7179d",
"headers": "",
"currentHelper": "normal",
"time": 1458077061863,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "im.mark",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/im.mark?token={{token}}&channel=D1234567890&ts=1234567890",
"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. |",
"id": "5b455104-00d4-6962-1456-5df28f944370",
"headers": "",
"currentHelper": "normal",
"time": 1458080618970,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "mpim.close",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/mpim.close?token={{token}}&channel=",
"description": "This method closes a multiparty direct message channel.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: mpim:write) |\n| channel | D1234567890 | Required | MPIM to close. |\n",
"id": "5b7dc19b-abc5-e1e9-f75f-82f85a9e47ec",
"headers": "",
"currentHelper": "normal",
"time": 1458080811044,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.join",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.join?token={{token}}&name=mychannel",
"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 |",
"id": "609cf608-d068-cec4-0f24-9b28d0f6b52c",
"headers": "",
"currentHelper": "normal",
"time": 1458073041334,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "reactions.get",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/reactions.get?token={{token}}&file=F1234567890&file_comment=Fc1234567890&channel=C1234567890×tamp=1234567890.123456&full",
"description": "This method returns a list of all reactions for a single item (file, file comment, channel message, group message, or direct message.\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: reactions:read) |\n| file | F1234567890 | Optional | File to get reactions for. |\n| file_comment | Fc1234567890 | Optional | File comment to get reactions for. |\n| channel | C1234567890 | Optional | Channel where the message to get reactions for was posted. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to get reactions for. |\n| full | | Optional | If true always return the complete reaction list. |",
"id": "63a92ef2-7367-cd2c-50a7-8a34b0883075",
"headers": "",
"currentHelper": "normal",
"time": 1458082060179,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "reactions.add",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/reactions.add?token={{token}}&name=thumbsup&file=F1234567890&file_comment=Fc1234567890&channel=C1234567890×tamp=1234567890.123456",
"description": "This method adds a reaction (emoji) to an item (file, file comment, channel message, group message, or direct message). One of file, file_comment, or the combination of channel and timestamp must be specified.\n\n| Argument | Example | Required | Description |\n|--------------|---------------------|----------|----------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: reactions:write) |\n| name | thumbsup | Required | Reaction (emoji) name. |\n| file | F1234567890 | Optional | File to add reaction to. |\n| file_comment | Fc1234567890 | Optional | File comment to add reaction to. |\n| channel | C1234567890 | Optional | Channel where the message to add reaction to was posted. |\n| timestamp | 1234567890.123456 | Optional | Timestamp of the message to add reaction to. |",
"id": "6462f01e-7c81-077d-87f7-f8313075148e",
"headers": "",
"currentHelper": "normal",
"time": 1458081990784,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "usergroups.enable",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/usergroups.enable?token={{token}}&usergroup=S0604QSJC&include_count=1",
"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. |",
"id": "64e0d610-76a0-f3a4-a91a-0833a6702661",
"headers": "",
"currentHelper": "normal",
"time": 1458083528756,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.comments.add",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.comments.add?token={{token}}&file=F1234567890&comment=Everyone should take a moment to read this file.\t",
"description": "Add a comment to an existing file.\n\n\n| Argument | Example | Required | Description |\n|----------|--------------------------------------------------|----------|---------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:write:user) |\n| file | F1234567890 | Required | File to add a comment to. |\n| comment | Everyone should take a moment to read this file. | Required | Text of the comment to add. |",
"id": "6b94e749-74f6-c555-28b3-a5343f8a36bf",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074880226,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "dnd.info",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/dnd.info?token={{token}}&user=U1234",
"description": "Provides information about a user's current Do Not Disturb settings.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-----------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: dnd:read) |\n| user | U1234 | Optional | User to fetch status for (defaults to current user) |",
"id": "6f4e6814-4f37-3044-6b03-da91adbed7c5",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074591784,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.list?token={{token}}&exclude_archived=0",
"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. | |",
"id": "71486af5-1270-a98d-6da8-3cd57fb154ca",
"headers": "",
"currentHelper": "normal",
"time": 1458073028804,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.setTopic",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.setTopic?token={{token}}&channel=G1234567890&topic=The New Topic",
"description": "This method is used to change the topic of a private channel. The calling user must be a member of the private channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:`groups:write`) |\n| channel | G1234567890 | Required | Private channel to set the topic of |\n| topic | My Topic | Required | The new topic |",
"id": "72d3421b-e931-ab3d-825d-a1124599ea0e",
"headers": "",
"currentHelper": "normal",
"time": 1458077370573,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.sharedPublicUrl",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.sharedPublicUrl?token={{token}}&file=F1234567890",
"description": "This method enables public/external sharing for a file.\n\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|---------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:write:user) |\n| file | F1234567890 | Required | File to revoke |",
"id": "73b6b32c-24bd-a881-b789-81394efcfbd5",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458075791764,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "im.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/im.read?token={{token}}",
"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",
"id": "74fecdc2-958b-7c55-d3aa-914023bba450",
"headers": "",
"currentHelper": "normal",
"time": 1458080505112,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.rename",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.rename?token={{token}}&channel=G1234567890&name=channel-name",
"description": "This method renames a private channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope:channels:write) |\n| channel | G1234567890 | Required | Private channel to rename |\n| name | | Required | New name for private channel. |",
"id": "7575bc99-000e-0de7-2346-4fe788f633af",
"headers": "",
"currentHelper": "normal",
"time": 1458077288464,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.unarchive",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.unarchive?token={{token}}&channel=G1234567890",
"description": "This method unarchives a private channel.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|-------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: `groups:write`) |\n| channel | G1234567890 | Required | Private channel to unarchive |",
"id": "79298602-4231-fbec-d99d-b4c480163f2f",
"headers": "",
"currentHelper": "normal",
"time": 1458077400576,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "emoji.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/dnd.info?token={{token}}",
"description": "This method lists the custom emoji for a team.\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|---------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: emoji:read) |",
"id": "7a63d9d9-12e9-120d-54ca-afc3ef1ddcd0",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074777154,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "groups.history",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/groups.history?token={{token}}&channel=G1234567890&latest=1234567890.123456&oldest=1234567890.123456&inclusive=1&count=100&unreads=1",
"description": "This method returns a portion of messages/events from the specified private channel. To read the entire history for a private 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:`groups:history`) |\n| channel | G1234567890 | Required | Private 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? |",
"id": "7c8e659e-0028-1d25-a3f1-5f9229d6983f",
"headers": "",
"currentHelper": "normal",
"time": 1458076749443,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.mark",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.mark?token={{token}}&channel=C1234567890&ts=1234567890",
"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. |",
"id": "7dce9acc-6e44-23ce-d4da-1b856bb5cd58",
"headers": "",
"currentHelper": "normal",
"time": 1458073023100,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.comments.edit",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.comments.edit?token={{token}}&file=F1234567890&id=Fc1234567890&comment=Everyone should take a moment to read this file, seriously.\t",
"description": "Edit an existing comment on a file. Only the user who created a comment may make edits. Teams may configure a limited time window during which file comment edits are allowed.\n\n| Argument | Example | Required | Description |\n|----------|-------------------------------------------------------------|----------|---------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:write:user) |\n| file | F1234567890 | Required | File containing the comment to edit. |\n| id | Fc1234567890 | Required | The comment to edit. |\n| comment | Everyone should take a moment to read this file, seriously. | Required | Text of the comment to edit. |",
"id": "80c55a70-9f8d-3577-af07-2db7dec9bcf1",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458075010967,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "chat.update",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/chat.update?token={{token}}&ts=C1234567890&channel=C1234567890&text=Hello world\t&attachments=[{\"pretext\": \"pre-hello\", \"text\": \"text-world\"}]&parse=none&link_names=1&as_user=true",
"description": "This method updates a message in a channel. Though related to chat.postMessage, some parameters of chat.update are handled differently.\n\n| Argument | Example | Required | Description |\n|-------------|--------------------------------------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: chat:write:user) |\n| ts | 1405894322 | Required | Timestamp of the message to be updated. |\n| channel | C1234567890 | Required | Channel containing the message to be updated. |\n| text | Hello world | Required | New text for the message, using thedefault formatting rules. |\n| attachments | [{\"pretext\": \"pre-hello\", \"text\": \"text-world\"}] | Optional | Structured message attachments. |\n| parse | none | Optional | Change how messages are treated. Defaults to client, unlikechat.postMessage. See below. |\n| link_names | 1 | Optional | Find and link channel names and usernames. Defaults to none. This parameter should be used in conjunction with parse. To setlink_names to 1, specify a parsemode of full. |\n| as_user | TRUE | Optional | Pass true to update the message as the authed user. Bot users in this context are considered authed users. |",
"id": "82a2b1d0-6b50-2d4b-15c0-e4f6abafde2f",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458074368004,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "usergroups.users.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/usergroups.users.list?token={{token}}&usergroup=S0604QSJC\t&include_disabled=1",
"description": "This method returns a list of all users within a user group.\n\n\n\n| Argument | Example | Required | Description |\n|------------------|---------------------|----------|--------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: usergroups:read) |\n| usergroup | S0604QSJC | Required | The encoded ID of the user group to update. |\n| include_disabled | 1 | Optional | Allow results that involve disabled user groups. |\n",
"id": "84686c90-2a4d-58f4-fc7b-375276b2bbb4",
"headers": "",
"currentHelper": "normal",
"time": 1458083654518,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"responses": [],
"dataMode": "params",
"tests": null,
"helperAttributes": {},
"pathVariables": {},
"name": "files.list",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/files.list?token={{token}}&user=U1234567890&channel=C1234567890&ts_from=123456789&ts_to=123456789&types=images&count=100&page=1",
"description": "This method returns a list of files within the team. It can be filtered and sliced in various ways.\n| Argument | Example | Required | Description |\n|----------|---------------------|-----------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: files:read) |\n| user | U1234567890 | Optional | Filter files created by a single user. |\n| channel | C1234567890 | Optional | Filter files appearing in a specific channel, indicated by its ID. |\n| ts_from | 123456789 | Optional, default=0 | Filter files created after this timestamp (inclusive). |\n| ts_to | 123456789 | Optional, default=now | Filter files created before this timestamp (inclusive). |\n| types | images | Optional, default=all | Filter files by type:all - All files posts - Posts snippets - Snippets images - Image files gdocs - Google docs zips - Zip files pdfs - PDF filesYou can pass multiple values in the types argument, liketypes=posts,snippets.The default value is all, which does not filter the list. |\n| count | 20 | Optional, default=100 | Number of items to return per page. |\n| page | 2 | Optional, default=1 | Page number of results to return. |",
"id": "85f7597a-f347-0b1f-8440-568f6fd41ce8",
"headers": "",
"currentHelper": "normal",
"version": 2,
"time": 1458075716334,
"data": null,
"method": "GET",
"preRequestScript": null
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "users.setPresence",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/users.setPresence?token={{token}}&presence=away",
"description": "This method lets you set the calling user's manual presence. Consult the presence documentation for more details.\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|----------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: users:write) |\n| presence | away | Required | Either auto or away |",
"id": "86067911-d02d-e2a4-73bd-a7907fb718bb",
"headers": "",
"currentHelper": "normal",
"time": 1458084037187,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "channels.kick",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/channels.kick?token={{token}}&channel=C1234567890&user=U1234567890",
"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. |",
"id": "864a1d8d-73ec-62c0-c596-a00846959ad6",
"headers": "",
"currentHelper": "normal",
"time": 1458073036928,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "mpim.history",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/mpim.history?token={{token}}&channel=&latest=1234567890.123456\t&oldest=now&inclusive=0&count=100&unreads=0",
"description": "This method returns a portion of messages/events from the specified multiparty direct message channel. To read the entire history for a multiparty direct message, call the method with no latest or oldest arguments, and then continue paging using the instructions below.\n\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-----------------------|--------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: mpim:history) |\n| channel | D1234567890 | Required | Multiparty direct message 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? |",
"id": "88562cbd-0cb8-d35f-d051-e2f47627ad32",
"headers": "",
"currentHelper": "normal",
"time": 1458080865138,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "users.getPresence",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/users.getPresence?token={{token}}&users=U1234567890",
"description": "This method lets you find out information about a user's presence. Consult the presence documentation for more details.\n\n\n| Argument | Example | Required | Description |\n|-----------|---------------------|-----------------------|--------------------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: users:read) |\n| user | U1234567890 | Required | \tUser to get presence info on. Defaults to the authed user. |\n",
"id": "8aa89e8f-6197-6481-9047-8428e0e14b09",
"headers": "",
"currentHelper": "normal",
"time": 1458083898899,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {
"dataMode": "params",
"tests": "",
"helperAttributes": {},
"pathVariables": {},
"name": "mpim.mark",
"collectionId": "61f78c99-51e4-2b6f-5a39-20da127ea997",
"url": "https://slack.com/api/mpim.mark?token={{token}}&channel=G1234567890&ts=1234567890",
"description": "This method moves the read cursor in a multiparty direct message channel.\n\n\n\n| Argument | Example | Required | Description |\n|----------|---------------------|----------|--------------------------------------------------|\n| token | xxxx-xxxxxxxxx-xxxx | Required | Authentication token (Requires scope: mpim:write) |\n| channel | G1234567890 | Required | multiparty direct message channel to set reading cursor in. |\n| ts | 1234567890 | Required | Timestamp of the most recently seen message. |",
"id": "8b856b7e-ca86-c726-2e0b-0184cb6376f4",
"headers": "",
"currentHelper": "normal",
"time": 1458080943778,
"data": [],
"method": "GET",
"preRequestScript": ""
}, {