forked from RocketChat/Rocket.Chat-Open-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rooms.yaml
12115 lines (11928 loc) · 418 KB
/
rooms.yaml
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
openapi: 3.0.0
info:
version: 1.0.0
title: Rooms
# description: |-
# Conversations take place in rooms. This section includes the following:
# * **Groups**: Organize discussions with groups or channels.
# * **Channels**: Create and manage dedicated [channels](https://docs.rocket.chat/use-rocket.chat/user-guides/rooms/channels) for various topics.
# * **Rooms**: Manage rooms and modify room settings.
# * **Teams**: Create and manage [teams](https://docs.rocket.chat/use-rocket.chat/user-guides/rooms/teams) and team members.
# * **Directory**: Search workspace users, teams, and channels.
servers:
- url: https://apiexplorer.support.rocket.chat
paths:
/api/v1/channels.create:
post:
tags:
- Channels
summary: Create Channel
description: |-
Create a public channel. Optionally, include specified users. The channel creator is included as a member by default.
Channel naming has restraints following the regex filter `[0-9a-zA-Z-_.]+` by default. See <a href="https://docs.rocket.chat/docs/general#utf8" target="_blank">UTF8 Settings</a> to modify regex filter for channel names. Channel names must not allow for any whitespaces.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 6.4.1 | Added `excludeSelf` param |
| 0.13.0 | Added |
operationId: post-api-v1-channels.create
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: The name of the channel.
members:
type: array
description: An array of the users to be added to the channel when it is created.
items:
type: string
readOnly:
type: boolean
description: Set if the channel is read only or not. It is `false` by default.
excludeSelf:
type: boolean
description: 'If set to true, the user calling the endpoint is not automatically added as a member of the channel. The default `value` is false.'
customFields:
type: object
description: 'If you have defined custom fields for your workspace, you can provide them in this object parameter.'
extraData:
type: object
description: |-
Enter the following details for the object:
- `broadcast`: Whether the channel should be a broadcast group.
- `encrypted`: Whether the channel should be encrypted.
- `teamId`: Enter the team ID for which you want to create a group.
For more information, see <a href='https://docs.rocket.chat/use-rocket.chat/user-guides/rooms/channels#channel-privacy-and-encryption' target='_blank'>Channels</a>
required:
- name
examples:
Example:
value:
name: channelname
members:
- rocket.cat
readOnly: true
excludeSelf: true
customFields:
type: default
extraData:
broadcast: true
encrypted: false
teamId: 658441562dd9f928ad9951aa
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
channel:
type: object
properties:
_id:
type: string
fname:
type: string
_updatedAt:
type: string
customFields:
type: object
name:
type: string
t:
type: string
msgs:
type: integer
usersCount:
type: integer
u:
type: object
properties:
_id:
type: string
username:
type: string
name:
type: string
ts:
type: string
ro:
type: boolean
default:
type: boolean
sysMes:
type: boolean
success:
type: boolean
examples:
Example:
value:
channel:
_id: ByehQjC44FwMeiLbX
name: channelname
t: c
usernames:
- example
msgs: 0
u:
_id: aobEdbYhXfu5hkeqG
username: example
ts: '2016-05-30T13:42:25.304Z'
success: true
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.addAll:
post:
tags:
- Channels
summary: Add all Users to a Channel
description: |-
Adds all users in the workspace to a channel.
### Changelog
| Version | Description |
| ------- | ------------------------- |
|0.55.0 | Added `activeUsersOnly` param |
|0.48.0 | Renamed to `channels.addAll` from `channel.addAll`|
operationId: post-api-v1-channels.addAll
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel's id.
activeUsersOnly:
type: boolean
description: Add only active users. It is `false` by default.
required:
- roomId
examples:
Example:
value:
roomId: WDuJLFkjwk6L7LdFC
activeUsersOnly: true
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
channel:
type: object
properties:
_id:
type: string
fname:
type: string
customFields:
type: object
topic:
type: string
broadcast:
type: boolean
encrypted:
type: boolean
name:
type: string
t:
type: string
msgs:
type: integer
usersCount:
type: integer
u:
type: object
properties:
_id:
type: string
username:
type: string
ts:
type: string
ro:
type: boolean
default:
type: boolean
sysMes:
type: boolean
_updatedAt:
type: string
lastMessage:
type: object
properties:
_id:
type: string
rid:
type: string
msg:
type: string
ts:
type: string
u:
type: object
properties:
_id:
type: string
username:
type: string
name:
type: string
_updatedAt:
type: string
urls:
type: array
items:
type: object
mentions:
type: array
items:
type: object
channels:
type: array
items:
type: object
md:
type: array
items:
type: object
properties:
type:
type: string
value:
type: array
items:
type: object
properties:
type:
type: string
value:
type: string
lm:
type: string
success:
type: boolean
examples:
Success:
value:
channel:
_id: ByehQjC44FwMeiLbX
name: channelname
t: c
usernames:
- example
- rocket.cat
msgs: 0
u:
_id: aobEdbYhXfu5hkeqG
username: example
ts: '2016-05-30T13:42:25.304Z'
success: true
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.addLeader:
post:
tags:
- Channels
summary: Add Channel Leader
description: |-
Assign the role of `leader` to a user in the current channel.
Permission required: `set-leader`
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.75.0 | Added |
operationId: post-api-v1-channels.addLeader
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel's id
userId:
type: string
description: The userId of the user to be made leader
required:
- roomId
- userId
examples:
Example:
value:
roomId: WDuJLFkjwk6L7LdFC
userId: b66oZ8i9pkeSko33v
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
User is a leader:
value:
success: false
error: 'User is already a leader [error-user-already-leader]'
errorType: error-user-already-leader
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.addModerator:
post:
tags:
- Channels
summary: Add Channel Moderator
description: |-
Assign the `moderator` role to a user in a channel.
Permission required: `set-moderator`
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.49.4 | Added |
operationId: post-api-v1-channels.addModerator
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel's id
userId:
type: string
description: The user ID that you want to set as the moderator.
required:
- roomId
- userId
examples:
Example:
value:
roomId: WDuJLFkjwk6L7LdFC
userId: b66oZ8i9pkeSko33v
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
User is already a moderator:
value:
success: false
error: 'User is already a moderator [error-user-already-moderator]'
errorType: error-user-already-moderator
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.addOwner:
post:
tags:
- Channels
summary: Add Channel Owner
description: |-
Assign the `owner` role to a user in a channel.
Permission required: `set-owner`
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.49.4 | Added |
operationId: post-api-v1-channels.addOwner
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel's id
userId:
type: string
description: The user ID that you want to set as the channel owner.
required:
- roomId
- userId
examples:
Example:
value:
roomId: WDuJLFkjwk6L7LdFC
userId: b66oZ8i9pkeSko33v
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
details:
type: object
properties:
method:
type: string
examples:
User is alrready an owner:
value:
success: false
error: 'User is already an owner [error-user-already-owner]'
errorType: error-user-already-owner
details:
method: addRoomOwner
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.anonymousread:
get:
tags:
- Channels
summary: Read Channel Messages Anonymously
description: |-
Fetch the messages in a public channel to an anonymous user. You must enable `Accounts_AllowAnonymousRead` <a href="https://docs.rocket.chat/docs/accounts" target="_blank">setting</a> in the workspace.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 1.2.0 | Added |
operationId: get-api-v1-channels.anonymousread
parameters:
- $ref: '#/components/parameters/Optional-RoomId'
- $ref: '#/components/parameters/Optional-RoomName'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/query'
- $ref: '#/components/parameters/fields'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
messages:
type: array
items:
type: object
properties:
_id:
type: string
t:
type: string
msg:
type: string
groupable:
type: boolean
blocks:
type: array
items:
type: object
properties:
type:
type: string
blockId:
type: string
callId:
type: string
appId:
type: string
ts:
type: string
u:
type: object
properties:
_id:
type: string
username:
type: string
name:
type: string
rid:
type: string
_updatedAt:
type: string
urls:
type: array
items:
type: object
mentions:
type: array
items:
type: object
channels:
type: array
items:
type: object
md:
type: array
items:
type: object
properties:
type:
type: string
value:
type: array
items:
type: object
properties:
type:
type: string
value:
type: string
count:
type: integer
offset:
type: integer
total:
type: integer
success:
type: boolean
examples:
Success:
value:
messages:
- _id: xadufzmxzYQp4H9py
alias: test
msg: Example message
attachments: []
parseUrls: true
bot:
i: MnQyfhWt5LqZotyfc
groupable: false
ts: '2018-10-05T01:10:47.524Z'
u:
_id: rocket.cat
username: rocket.cat
name: Rocket.Cat
rid: GENERAL
_updatedAt: '2018-10-05T13:42:51.163Z'
reactions:
':grin:':
usernames:
- marco.zoo
mentions: []
channels: []
starred:
_id: KPkEYwKKBKZnEEPpt
- _id: id-1538701845987
rid: GENERAL
msg: This message was edited via API
alias: Gruggy
emoji: ':smirk:'
avatar: 'http://res.guggy.com/logo_128.png'
attachments:
- collapsed: false
color: '#ff0000'
text: Yay for gruggy!
ts: '2016-12-09T16:53:06.761Z'
message_link: 'https://google.com'
thumb_url: 'http://res.guggy.com/logo_128.png'
author_name: Bradley Hilton
author_link: 'https://rocket.chat/'
author_icon: 'https://avatars.githubusercontent.com/u/850391?v=3'
title: Attachment Example
title_link: 'https://youtube.com'
title_link_download: true
image_url: 'http://res.guggy.com/logo_128.png'
audio_url: 'http://www.w3schools.com/tags/horse.mp3'
video_url: 'http://www.w3schools.com/tags/movie.mp4'
fields:
- short: true
title: Test
value: Testing out something or other
- short: true
title: Another Test
value: '<a href="https://google.com" target="_blank">Link</a> something and this and that.'
ts: '2018-10-05T01:10:45.994Z'
u:
_id: rocketchat.internal.admin.test
username: rocketchat.internal.admin.test
name: RocketChat Internal Admin Test
_updatedAt: '2018-10-05T01:10:47.064Z'
editedBy:
_id: rocketchat.internal.admin.test
username: rocketchat.internal.admin.test
editedAt: '2018-10-05T01:10:46.384Z'
reactions:
':smile:':
usernames:
- rocketchat.internal.admin.test
':squid:':
usernames:
- rocketchat.internal.admin.test
':bee:':
usernames:
- rocketchat.internal.admin.test
':ant:':
usernames:
- rocketchat.internal.admin.test
mentions: []
channels: []
urls: []
count: 2
offset: 0
total: 2
success: true
/api/v1/channels.archive:
post:
tags:
- Channels
summary: Archive Channel
description: |-
Archive a channel.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.48.0 | Added |
operationId: post-api-v1-channels.archive
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel ID that you want to archive.
required:
- roomId
examples:
Example:
value:
roomId: ByehQjC44FwMeiLbX
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Channel is already archived:
value:
success: false
error: 'The channel, add-room-websocket, is archived [error-room-archived]'
errorType: error-room-archived
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.close:
post:
tags:
- Channels
summary: Close Channel
description: |-
Remove a channel from the authenticated user's list of channels.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.48.0 | Added |
operationId: post-api-v1-channels.close
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
description: The channel ID that you want to close from your list.
required:
- roomId
examples:
Example:
value:
roomId: ByehQjC44FwMeiLbX
responses:
'200':
$ref: '#/components/responses/trueSuccess'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
examples:
Channel is already closed:
value:
success: false
error: 'The channel, dlp, is already closed to the sender'
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/channels.counters:
get:
tags:
- Channels
summary: Get Channel Counters
description: |-
Gets channel counter for the authenticated user.
Permission required: `view-room-administration`
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.65.0 | Added |
operationId: get-api-v1-channels.counters
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/Optional-RoomId'
- $ref: '#/components/parameters/Optional-RoomName'
- name: userId
in: query
description: The user ID.
schema:
type: string
example: RtycPC29hqLJfT9xj
responses:
'200':
description: |-
OK
**Note**
- `joined` boolean flag whether the user has joined the room or not.
- `members` is the count of current room members.
- `unreads` is the count of unread messages for the specified user (for the calling user or the provided user ID).
- `unreadsFrom` is the start date-time of unread interval for the specified user.
- `msgs` is the count of messages in the room.
- `latest` is the end date-time of unread interval for the specified user (or date-time of last posted message).
- `userMentions` is the count of user mentions in messages.
content:
application/json:
schema:
type: object
properties:
joined:
type: boolean
members:
type: integer
unreads:
type: integer
unreadsFrom:
type: string
msgs:
type: integer
latest:
type: string
userMentions:
type: integer
success:
type: boolean
examples:
Example:
value:
joined: true
members: 23
unreads: 2
unreadsFrom: '2023-09-12T16:33:11.644Z'
msgs: 7345
latest: '2023-09-25T22:50:07.979Z'
userMentions: 0
success: true
/api/v1/channels.delete:
post:
tags:
- Channels
summary: Delete Channel
description: |-
Delete a channel.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.71.0 | Removed `channel` property|
| 0.49.0 | Added |
operationId: post-api-v1-channels.delete
parameters:
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/UserId'
requestBody:
content:
application/json:
schema:
type: object
properties:
roomId:
type: string
example: ByehQjC44FwMeiLbX
description: Enter the room ID. This parameter is required if no `roomName` is provided.
roomName:
type: string
example: general
description: Enter the room name. This parameter is required if no `roomId` is provided.
responses:
'200':
$ref: '#/components/responses/trueSuccess'
/api/v1/channels.files:
get:
tags:
- Channels
summary: Get Channel Files
description: |-
Retrieves all the files from a channel.
### Changelog
| Version | Description |
| ------- | ------------------------- |
| 0.64.0 | Change userId to user object in response |
| 0.59.0 | Added |
operationId: get-api-v1-channels.files
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/Auth-Token'
- $ref: '#/components/parameters/Optional-RoomId'
- $ref: '#/components/parameters/Optional-RoomName'
- $ref: '#/components/parameters/fields'
- $ref: '#/components/parameters/query'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/offset'
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
files:
type: array
items:
type: object
properties:
_id:
type: string
name:
type: string
size:
type: integer
type:
type: string
rid:
type: string
userId:
type: string
store:
type: string
_updatedAt:
type: string
identify:
type: object
properties:
format:
type: string
size:
type: object
properties:
width:
type: integer
height:
type: integer
complete:
type: boolean
etag:
type: string
path:
type: string
progress:
type: integer
token:
type: string
uploadedAt:
type: string
uploading:
type: boolean
url:
type: string
typeGroup:
type: string
user:
type: object
properties:
_id:
type: string
username:
type: string
name:
type: string
count:
type: integer
offset:
type: integer
total:
type: integer
success:
type: boolean
examples:
Example:
value:
files:
- _id: 651227bea2f73c7460e18c63
name: Screenshot (317).png
size: 288727