-
Notifications
You must be signed in to change notification settings - Fork 1
/
integrations.yaml
1670 lines (1654 loc) · 58.8 KB
/
integrations.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: Integrations
# description: |-
# The following endpoints provide integration support for your Rocket.Chat workspaces:
# * **Integration**: Create and manage [integrations](https://docs.rocket.chat/use-rocket.chat/workspace-administration/integrations).
# * **WebDAV**: Manage [WebDAV](https://docs.rocket.chat/use-rocket.chat/workspace-administration/settings/webdav-integration) server accounts.
# * **OAuth Apps**: Create and manage OAuth apps to authenticate users.
servers:
- url: https://apiexplorer.support.rocket.chat
paths:
/api/v1/integrations.create:
post:
tags:
- Integration
summary: Create Integration
description: |-
Permissions required to create incoming integrations:
* `manage-incoming-integrations`
* `manage-own-incoming-integrations`
Permissions required to create outgoing integrations:
* `manage-outgoing-integrations`
* `manage-own-outgoing-integrations`
### Changelog
| Version | Description |
| ---------------- | ------------|
|1.1.0 | Separate permissions in incoming and outgoing. |
|0.49.0 | Added |
operationId: post-api-v1-integrations-create
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
requestBody:
description: ''
content:
application/json:
schema:
type: object
properties:
type:
type: string
description: "The type of integration to create. The possible values are:\r\n* `webhook-incoming`\r\n* `webhook-outgoing`"
username:
type: string
description: The username to post this the messages as.
channel:
type: string
description: 'The channel, group, or @username. The value can also be `all_public_channels`, `all_private_groups`, or `all_direct_messages`. Comma separated for more than one.'
example: '#general'
scriptEnabled:
type: boolean
description: Whether the script should be enabled.
script:
type: string
description: The script that is triggered when this integration is triggered.
name:
type: string
description: The name of the integration.
enabled:
type: boolean
description: Whether this integration should be enabled or not.
alias:
type: string
description: The alias which should be applied to messages when this integration is processed.
avatar:
type: string
description: 'The logo to apply to the messages that this integration sends. For example, http://res.guggy.com/logo_128.png'
emoji:
type: string
description: The emoji which should be displayed as the avatar for messages from this integration.
example: ':ghost:'
event:
type: string
description: |-
**Required for outgoing integrations.**
The type of event can be any of the following:
* `sendMessage`
* `fileUploaded`
* `roomArchived`
* `roomCreated`
* `roomJoined`
* `roomLeft`
* `userCreated`
urls:
type: array
description: |-
**Required for outgoing integrations.**
The urls to call whenever this integration is triggered.
items:
type: string
triggerWords:
type: string
description: |-
This is an outgoing integration parameter.
Specific words, separated by commas, that should trigger this integration.
token:
type: string
description: |-
This is an outgoing integration parameter.
If your integration requires a special token from the server (API key), use this parameter.
required:
- type
- username
- channel
- scriptEnabled
- name
- enabled
- event
- urls
examples:
Incoming integration example:
value:
type: webhook-incoming
username: test.cat
channel: '#general'
scriptEnabled: true
name: test.cat
enabled: true
Outgoing integration example:
value:
type: webhook-outgoing
username: test.cat
channel: '#general'
scriptEnabled: true
name: test.cat
enabled: true
event: sendMessage
urls:
- 'https://text2gif.guggy.com/guggify'
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
integration:
type: object
properties:
type:
type: string
username:
type: string
channel:
type: array
items:
type: string
scriptEnabled:
type: boolean
name:
type: string
enabled:
type: boolean
scriptEngine:
type: string
overrideDestinationChannelEnabled:
type: boolean
token:
type: string
userId:
type: string
_createdAt:
type: string
_createdBy:
type: object
properties:
_id:
type: string
username:
type: string
_id:
type: string
success:
type: boolean
examples:
Incoming integration example:
value:
integration:
type: webhook-incoming
username: test.cat
channel:
- '#general'
scriptEnabled: true
name: test.cat
enabled: true
scriptEngine: isolated-vm
overrideDestinationChannelEnabled: false
token: XuHp73MccmCvJ9m3fKdQK6HKW9tjhBcbTKKHCSSLsv7qn4fk
userId: CkCPNcvsvCDfmWLqC
_createdAt: '2024-01-10T14:12:07.739Z'
_createdBy:
_id: CkCPNcvsvCDfmWLqC
username: test.cat
_id: 659ea5b72dd9f928ada3e43e
success: true
Outgoing integration example:
value:
integration:
type: webhook-outgoing
username: test.cat
channel:
- '#general'
scriptEnabled: true
name: test.cat
enabled: true
event: sendMessage
urls:
- 'https://text2gif.guggy.com/guggify'
scriptEngine: isolated-vm
userId: CkCPNcvsvCDfmWLqC
_createdAt: '2024-01-10T14:12:52.201Z'
_createdBy:
_id: CkCPNcvsvCDfmWLqC
username: test.cat
_id: 659ea5e42dd9f928ada3e451
success: true
'401':
$ref: '#/components/responses/authorizationError'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Example 1:
value:
success: false
error: |-
must have required property 'type'
must have required property 'type'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
Example 2:
value:
success: false
error: |-
must have required property 'username'
must have required property 'username'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
/api/v1/integrations.get:
get:
tags:
- Integration
summary: Get Integration
description: |-
Get the information of a specific integration.
### Changelog
| Version | Description |
| ---------------- | ------------|
|2.4.0 | Added |
operationId: get-api-v1-integrations-get
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
- name: integrationId
in: query
description: The integration ID.
required: true
schema:
type: string
example: ByehQjC44FwMeiLbX
- name: createdBy
in: query
description: The user ID who created the integration.
schema:
type: string
example: fn5u45ui34fvb
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
integration:
type: object
properties:
_id:
type: string
type:
type: string
username:
type: string
channel:
type: array
items:
type: string
scriptEnabled:
type: boolean
name:
type: string
enabled:
type: boolean
event:
type: string
urls:
type: array
items:
type: string
scriptEngine:
type: string
userId:
type: string
_createdAt:
type: string
_createdBy:
type: object
properties:
_id:
type: string
username:
type: string
_updatedAt:
type: string
success:
type: boolean
examples:
Success Example:
value:
integration:
_id: 659ea5e42dd9f928ada3e451
type: webhook-outgoing
username: test.cat
channel:
- '#general'
scriptEnabled: true
name: test.cat
enabled: true
event: sendMessage
urls:
- 'https://text2gif.guggy.com/guggify'
scriptEngine: isolated-vm
userId: CkCPNcvsvCDfmWLqC
_createdAt: '2024-01-10T14:12:52.201Z'
_createdBy:
_id: CkCPNcvsvCDfmWLqC
username: test.cat
_updatedAt: '2024-01-10T14:12:52.203Z'
success: true
'401':
$ref: '#/components/responses/authorizationError'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Example 1:
value:
success: false
error: 'must have required property ''integrationId'' [invalid-params]'
errorType: invalid-params
Example 2:
value:
success: false
error: The integration does not exists.
/api/v1/integrations.history:
get:
tags:
- Integration
summary: Get Integration History
description: |-
Any of the following permissions is required:
* `manage-incoming-integrations`
* `manage-own-incoming-integrations`
* `manage-outgoing-integrations`
* `manage-own-outgoing-integrations`
The endpoint returns the integration history based on the user permissions.
### Changelog
|Version | Description |
| ---------------- | ------------|
|1.1.0 | Separate permissions in incoming and outgoing. |
|0.53.0 | Added |
operationId: get-api-v1-integrations-history
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
- name: id
in: query
description: The integration ID.
required: true
schema:
type: string
example: nvdQuJQ6tE9HRFBzd
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/query'
- $ref: '#/components/parameters/fields'
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
history:
type: array
items:
type: object
offset:
type: integer
items:
type: integer
total:
type: integer
success:
type: boolean
examples:
Example 1:
value:
history: []
offset: 0
items: 0
total: 0
success: true
'401':
$ref: '#/components/responses/authorizationError'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Example 1:
value:
success: false
error: 'must have required property ''id'' [invalid-params]'
errorType: invalid-params
/api/v1/integrations.list:
get:
tags:
- Integration
summary: Get List of Integrations
description: |-
Any of the following permissions is required:
* `manage-incoming-integrations`
* `manage-own-incoming-integrations`
* `manage-outgoing-integrations`
* `manage-own-outgoing-integrations`
The endpoint returns the integrations based on the user permissions.
### Changelog
| Version | Description |
| ---------------- | ------------|
|7.0.0 | Added `name` and `type` query parameters for filtering. |
|1.1.0 | Separate permissions in incoming and outgoing. |
|0.49.0 | Added |
operationId: get-api-v1-integrations-list
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/query'
- $ref: '#/components/parameters/fields'
- name: name
in: query
description: |-
Filter list by the name of the integration.
schema:
type: string
example: test
- name: type
in: query
description: |-
Filter list by the type of the integration. It can be `webhook-outgoing` or `webhook-incoming`.
schema:
type: string
example: webhook-incoming
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
integrations:
type: array
items:
type: object
properties:
_id:
type: string
enabled:
type: boolean
username:
type: string
alias:
type: string
avatar:
type: string
name:
type: string
triggerWords:
type: array
items:
type: string
urls:
type: array
items:
type: string
token:
type: string
script:
type: string
scriptEnabled:
type: boolean
impersonateUser:
type: boolean
scriptCompiled:
type: string
scriptError:
type: string
type:
type: string
userId:
type: string
channel:
type: array
items:
type: object
_createdAt:
type: string
_createdBy:
type: object
properties:
username:
type: string
_id:
type: string
_updatedAt:
type: string
offset:
type: integer
items:
type: integer
total:
type: integer
success:
type: boolean
examples:
Success Example:
value:
integrations:
- _id: WMQDChpnYTRmFre9h
enabled: true
username: rocket.cat
alias: Guggy
avatar: 'https://image.crisp.im/avatar/website/17651a90-e082-43f6-b308-957cea6e323c/128'
name: Guggy
triggerWords:
- '!guggy'
- guggy
- gif+
urls:
- 'http://text2gif.guggy.com/guggify'
token: aobEdbYhXfu5hkeqG
script: ...
scriptEnabled: true
impersonateUser: false
scriptCompiled: ...
scriptError: null
type: webhook-outgoing
userId: rocket.cat
channel: []
_createdAt: '2017-01-05T17:06:05.660Z'
_createdBy:
username: graywolf336
_id: R4jgcQaQhvvK6K3iY
_updatedAt: '2017-01-05T17:06:05.660Z'
- _id: 3aazpZ2WzoBP8msi9
type: webhook-outgoing
name: Testing via REST API
enabled: false
username: rocket.cat
urls:
- 'http://text2gif.guggy.com/guggify'
scriptEnabled: false
userId: rocket.cat
channel: []
_createdAt: '2017-01-06T13:23:46.018Z'
_createdBy:
username: graywolf336
_id: R4jgcQaQhvvK6K3iY
_updatedAt: '2017-01-06T13:23:46.018Z'
offset: 0
items: 2
total: 2
success: true
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/integrations.update:
put:
tags:
- Integration
summary: Update Integration
description: |-
Update an existing integration.
Permissions required:
* `manage-incoming-integrations`
* `manage-own-incoming-integrations`
* `manage-outgoing-integrations`
* `manage-own-outgoing-integrations`
### Changelog
| Version | Description |
| ---------------- | ------------|
|3.4.0 | Added |
operationId: put-api-v1-integrations.update
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
requestBody:
content:
application/json:
schema:
type: object
properties:
type:
type: string
description: "The type of integration. The possible values are:\r\n* `webhook-outgoing`\r\n* `webhook-incoming`"
name:
type: string
description: The name of the integration.
enabled:
type: boolean
description: Whether this integration should be enabled or not.
username:
type: string
description: The username to post this the messages as.
scriptEnabled:
type: boolean
description: Whether the script should be enabled.
channel:
type: string
description: 'The channel, group, or @username. The values can also be `all_public_channels`, `all_private_groups`, or `all_direct_messages`. Comma separated for more than one.'
integrationId:
type: string
description: The integration ID.
urls:
type: array
description: The urls to call whenever this integration is triggered.
items:
type: string
event:
type: string
description: "This field is required only for outgoing integrations. \r\nThe type of event can be any of these: `sendMessage`, `fileUploaded`, `roomArchived`, `roomCreated`, `roomJoined`, `roomLeft`, `userCreated`."
triggerWords:
type: string
description: 'Specific words, separated by commas, which should trigger this integration.'
alias:
type: string
description: The alias which should be applied to messages when this integration is processed.
avatar:
type: string
description: The logo to apply to the messages that this integration sends.
example: 'http://res.guggy.com/logo_128.png'
emoji:
type: string
description: The emoji which should be displayed as the avatar for messages from this integration.
example: ':ghost:'
token:
type: string
description: 'If your integration requires a special token from the server (API key), use this parameter.'
script:
type: string
description: Script triggered when this integration is triggered.
targetChannel:
type: string
description: The channel where messages will be sent to.
target_url:
type: string
description: The target url to set.
required:
- type
- name
- enabled
- username
- scriptEnabled
- channel
- integrationId
examples:
Example 1:
value:
type: webhook-incoming
name: Test
enabled: false
username: rocket.cat
scriptEnabled: false
channel: '#test'
integrationId: x3tPXa9XXRqW6Xp2M
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
integration:
type: object
properties:
_id:
type: string
enabled:
type: boolean
channel:
type: array
items:
type: string
username:
type: string
name:
type: string
alias:
type: string
avatarUrl:
type: string
emoji:
type: string
scriptEnabled:
type: boolean
script:
type: string
type:
type: string
token:
type: string
userId:
type: string
_createdAt:
type: string
_createdBy:
type: object
properties:
_id:
type: string
username:
type: string
_updatedAt:
type: string
_updatedBy:
type: object
properties:
_id:
type: string
username:
type: string
success:
type: boolean
examples:
Success Example:
value:
integration:
_id: x3tPXa9XXRqW6Xp2M
enabled: false
channel:
- '#test'
username: rodriq
name: Test
alias: Jim
avatarUrl: ''
emoji: ':ghost:'
scriptEnabled: false
script: console.log("MANNNNN ---------------------------------------------------------")
type: webhook-incoming
token: XYsrkngRr5PBkWhCqJWk5ZfKzQoxSv4QhxkK5trSgJENwbRL
userId: d26x6zSkaPSe5gCyy
_createdAt: '2021-10-22T14:48:46.025Z'
_createdBy:
_id: d26x6zSkaPSe5gCyy
username: rod
_updatedAt: '2021-10-22T16:08:39.843Z'
_updatedBy:
_id: d26x6zSkaPSe5gCyy
username: rod
success: true
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Example 1:
value:
success: false
error: |-
must have required property 'type'
must have required property 'type'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
Example 2:
value:
success: false
error: |-
must have required property 'integrationId'
must have required property 'type'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
Example 3:
value:
success: false
error: No integration found.
'401':
$ref: '#/components/responses/authorizationError'
/api/v1/integrations.remove:
post:
tags:
- Integration
summary: Remove Integration
description: |-
Remove an integration from the workspace.
Any of the following permissions is required:
* `manage-incoming-integrations`
* `manage-own-incoming-integrations`
* `manage-outgoing-integrations`
* `manage-own-outgoing-integrations`
### Changelog
| Version | Description |
| ---------------- | ------------|
|1.1.0 | Separate permissions in incoming and outgoing. |
|0.49.0 | Added |
operationId: post-api-v1-integrations.remove
parameters:
- $ref: '#/components/parameters/X-Auth-Token'
- $ref: '#/components/parameters/X-User-Id'
requestBody:
content:
application/json:
schema:
type: object
properties:
integrationId:
type: string
description: The integration ID to remove.
type:
type: string
description: "The type of integration. The possible values are:\r\n* `webhook-outgoing`\r\n* `webhook-incoming`"
required:
- integrationId
- type
examples:
Example 1:
value:
integrationId: oNLthAt9RwMw39N2B
type: webhook-outgoing
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
properties:
integration:
type: object
properties:
type:
type: string
username:
type: string
channel:
type: boolean
scriptEnabled:
type: string
name:
type: string
enabled:
type: string
examples:
Incoming integration example:
value:
integration:
type: webhook-incoming
username: rocket.cat
channel: false
scriptEnabled: sendMessage
name: sendMessage
enabled: sendMessage
Outgoing integration example:
value:
integration:
_id: oNLthAt9RwMw39N2B
type: webhook-outgoing
name: Testing via REST API
enabled: false
username: rocket.cat
urls:
- 'http://text2gif.guggy.com/guggify'
scriptEnabled: false
userId: rocket.cat
channel: []
_createdAt: '2017-01-06T13:42:14.143Z'
_createdBy:
username: graywolf336
_id: R4jgcQaQhvvK6K3iY
_updatedAt: '2017-01-06T13:42:14.144Z'
success: true
'401':
$ref: '#/components/responses/authorizationError'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
error:
type: string
errorType:
type: string
examples:
Example 1:
value:
success: false
error: |-
must have required property 'type'
must have required property 'type'
must have required property 'type'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
Example 2:
value:
success: false
error: |-
must have required property 'integrationId'
must have required property 'target_url'
must have required property 'integrationId'
must match exactly one schema in oneOf [invalid-params]
errorType: invalid-params
Example 3:
value:
success: false
error: No integration found.
/api/v1/webdav.getMyAccounts:
get:
tags:
- WebDAV
summary: Get WebDAV Accounts
description: |-
Retrieves the user's <a href="https://docs.rocket.chat/docs/webdav-integration" target="_blank">WebDAV</a> accounts.
### Changelog
| Version | Description |
| ---------------- | ------------|
|2.4.0 | Added |
operationId: get-api-v1-webdav.getMyAccounts
parameters: