-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathopenapi.json
More file actions
13359 lines (13359 loc) · 434 KB
/
Copy pathopenapi.json
File metadata and controls
13359 lines (13359 loc) · 434 KB
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.1.0",
"info": {
"title": "IntraVox API",
"version": "3.1.2",
"description": "IntraVox is a modern intranet page builder for Nextcloud. This API provides endpoints for managing pages, media, navigation, comments, reactions, the Photo Story widget (galleries with EXIF, maps and lightbox) and the File Story widget (document libraries with MetaVox-aware filtering and federated-share awareness).\n\n## Authentication failures and 429\n\nNextcloud applies brute-force protection to failed authentication at the platform level. Any authenticated endpoint here can therefore answer 429 Too Many Requests after repeated bad credentials from one address, whether or not that operation documents its own rate limit — and once tripped it keeps answering 429 even for correct credentials until the window expires.\n\nThis surprises automated clients most: a retry loop on a wrong token does not eventually succeed, it locks the address out. Treat 401 as terminal and fix the credentials rather than retrying.",
"license": {
"name": "AGPL-3.0",
"url": "https://www.gnu.org/licenses/agpl-3.0.html"
}
},
"servers": [
{
"url": "https://{nextcloud_host}/apps/intravox",
"description": "The app mount. Every path in this document answers here. Browser-session routes require the Nextcloud session cookie plus a requesttoken; the rest accept an app password over Basic auth.",
"variables": {
"nextcloud_host": {
"default": "localhost",
"description": "Nextcloud server hostname"
}
}
}
],
"security": [
{
"basic_auth": []
},
{
"bearer_auth": []
}
],
"tags": [
{
"name": "Analytics",
"description": "Page view statistics and their collection settings."
},
{
"name": "Bulk",
"description": "Administrator-only batch operations over pages, capped at 100 ids per call. Each item is convergent so a partial batch can be retried whole."
},
{
"name": "Calendar",
"description": "Calendar events surfaced by the calendar widget."
},
{
"name": "Comments",
"description": "Page comments and reactions"
},
{
"name": "Demo Data",
"description": "Bundled demo content: install it per language, or wipe a language and start fresh."
},
{
"name": "Export",
"description": "Content export"
},
{
"name": "External API",
"description": "The /ocs/v2.php entry points, for tools outside the browser session."
},
{
"name": "Feeds",
"description": "External feed sources: RSS/Atom plus configured connections to Moodle, Canvas, Brightspace, Jira, SharePoint, OpenProject and generic REST APIs."
},
{
"name": "File Story",
"description": "Paginated document browsing with grouping."
},
{
"name": "LMS",
"description": "Per-user account linking to learning platforms, by OAuth2 or by a manually issued API token. Tokens are stored per user and never returned."
},
{
"name": "Languages",
"description": "Which languages the instance offers, and their homepages."
},
{
"name": "Licensing",
"description": "Subscription key, usage reporting and telemetry."
},
{
"name": "Link Previews",
"description": "Server-side fetching of link preview metadata."
},
{
"name": "Media",
"description": "Media file operations"
},
{
"name": "Navigation",
"description": "Navigation management"
},
{
"name": "News",
"description": "News widget data"
},
{
"name": "Orphaned Data",
"description": "Administrator tooling for GroupFolder directories left on disk without a database row. Reads and writes the raw data directory."
},
{
"name": "Page Locks",
"description": "Cooperative editing locks that stop two people overwriting each other."
},
{
"name": "Pages",
"description": "Page management operations"
},
{
"name": "People",
"description": "User directory queries behind the people widget."
},
{
"name": "Photo Story",
"description": "Paginated photo browsing, clustering and EXIF."
},
{
"name": "Public Share",
"description": "Anonymous access to shared content via Nextcloud share links. No authentication required — access is controlled by the share token. Password-protected shares require session-based authentication via the /s/{token}/authenticate endpoint."
},
{
"name": "RSS Feed",
"description": "Token-authenticated RSS output and its token management."
},
{
"name": "Settings",
"description": "App settings (admin only)"
},
{
"name": "Templates",
"description": "Page template management - create pages from templates, save custom templates, and manage template library"
},
{
"name": "Translations",
"description": "Linking pages as language versions of one another."
}
],
"paths": {
"/api/admin/shares": {
"get": {
"operationId": "get-active-shares",
"summary": "Every public link share on IntraVox content",
"description": "Lists all link shares pointing into the IntraVox group folder, newest first, with enough context to judge each one: what it exposes, who made it, whether it has expired and where to find it.\n\nAdministrators only, and the reason is the token: this response contains the actual share TOKENS, so anyone who can read it can open every shared page regardless of their own permissions.\n\nExpired shares are INCLUDED and flagged rather than filtered out — an expired link that still exists is exactly what an audit wants to see.",
"tags": [
"Public Share"
],
"responses": {
"200": {
"description": "Active and expired link shares.",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "The live share token. Treat as a credential."
},
"scope": {
"type": "string",
"enum": [
"page",
"folder",
"language"
],
"description": "What the link exposes: a single page, a folder subtree, or a whole language."
},
"scopeLabel": {
"type": "string",
"description": "Human label — the page title where one could be read, otherwise a derived name."
},
"language": {
"type": "string"
},
"path": {
"type": "string",
"description": "Path within the group folder."
},
"owner": {
"type": "string"
},
"expired": {
"type": "boolean"
},
"expirationDate": {
"type": [
"string",
"null"
]
},
"createdAt": {
"type": [
"string",
"null"
]
},
"filesUrl": {
"type": "string",
"description": "Relative link to the item in the Files app."
},
"publicUrl": {
"type": "string",
"description": "Relative public share link."
}
},
"required": [
"token",
"scope",
"language",
"path",
"owner",
"expired"
]
}
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"description": "Administrator access required."
},
"500": {
"description": "Shares could not be listed."
}
}
}
},
"/api/analytics/dashboard": {
"get": {
"operationId": "get-analytics-dashboard",
"summary": "Instance-wide analytics",
"tags": [
"Analytics"
],
"description": "Aggregated figures across the instance. Admin only; a non-admin gets 403.",
"parameters": [
{
"name": "days",
"in": "query",
"required": false,
"description": "Window in days. Clamped to 1..365.",
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 365,
"default": 30
}
}
],
"responses": {
"200": {
"description": "Aggregated statistics.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalyticsStats"
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"$ref": "#/components/responses/Forbidden"
}
}
}
},
"/api/analytics/page/{pageId}": {
"get": {
"operationId": "get-page-stats",
"summary": "View statistics for one page",
"tags": [
"Analytics"
],
"description": "Per-page view counts over a window. Any logged-in user may read these.",
"parameters": [
{
"name": "pageId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "days",
"in": "query",
"required": false,
"description": "Window in days. Clamped to 1..365.",
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 365,
"default": 30
}
}
],
"responses": {
"200": {
"description": "Statistics for the page.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalyticsStats"
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
}
}
}
},
"/api/analytics/settings": {
"get": {
"operationId": "get-analytics-settings",
"summary": "Read analytics settings",
"tags": [
"Analytics"
],
"description": "Admin only.",
"responses": {
"200": {
"description": "The current settings.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalyticsSettings"
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"$ref": "#/components/responses/Forbidden"
}
}
},
"post": {
"operationId": "set-analytics-settings",
"summary": "Update analytics settings",
"tags": [
"Analytics"
],
"description": "Admin only. Values outside the accepted range are clamped, not rejected.",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"retentionDays": {
"type": "integer",
"minimum": 7,
"maximum": 365,
"default": 90
}
}
}
}
}
},
"responses": {
"200": {
"description": "The settings as stored.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AnalyticsSettings"
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"$ref": "#/components/responses/Forbidden"
}
}
}
},
"/api/analytics/top": {
"get": {
"operationId": "get-top-pages",
"summary": "Most-viewed pages",
"tags": [
"Analytics"
],
"parameters": [
{
"name": "limit",
"in": "query",
"required": false,
"description": "How many pages to return. Clamped to 1..50.",
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"default": 10
}
},
{
"name": "days",
"in": "query",
"required": false,
"description": "Window in days. Clamped to 1..365.",
"schema": {
"type": "integer",
"minimum": 1,
"maximum": 365,
"default": 30
}
}
],
"responses": {
"200": {
"description": "The most-viewed pages in the window.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TopPages"
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
}
}
}
},
"/api/analytics/track/{pageId}": {
"post": {
"operationId": "track-page-view",
"summary": "Record a page view",
"tags": [
"Analytics"
],
"description": "Rate limited to 60 per minute per user. Answers success even when collection is disabled, so a client need not branch on the setting.",
"parameters": [
{
"name": "pageId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Recorded, or accepted and ignored when analytics is off.",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean"
}
}
}
}
}
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"429": {
"description": "Rate limit exceeded."
}
}
}
},
"/api/bulk/delete": {
"post": {
"operationId": "bulk-delete",
"summary": "Delete pages in bulk",
"description": "Deletes up to 100 pages. Deleting a page that is already gone counts as success, which is what makes a retry safe.\n\nRETRY SAFETY. Each item is convergent, so re-sending the same request after a partial failure is safe: a page already deleted counts as deleted, and a page already under the target parent counts as moved. A client that retries the whole batch therefore converges rather than double-counting or erroring. There is no server-side ledger of what a previous call did — the guarantee comes from each item being idempotent, not from request de-duplication.\n\nAt most 100 page ids per call; more returns 400. This is a hard service limit, not a page size — there is no continuation token. A migration splits its own work into batches.\n\nAdministrators only.\n\nEvery call is written to the audit log with the caller, the ids and the counts.",
"tags": [
"Bulk"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"pageIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 100,
"description": "Page unique ids. Must be non-empty."
},
"deleteChildren": {
"type": "boolean",
"default": true,
"description": "Whether to remove child pages along with each parent. Defaults to TRUE — omitting it deletes subtrees."
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "When true nothing is changed and the response is a BulkValidation envelope instead of a BulkResult. Equivalent to calling /api/bulk/validate with the same ids."
}
},
"required": [
"pageIds"
]
}
}
}
},
"responses": {
"200": {
"description": "Every page succeeded.",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/BulkResult"
},
{
"$ref": "#/components/schemas/BulkValidation"
}
],
"description": "BulkValidation when dryRun was true, BulkResult otherwise."
}
}
}
},
"207": {
"description": "Multi-Status: at least one page failed and at least the attempt was made. Read results[] for the per-page outcome. The overall HTTP call succeeded — do not treat this as an error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BulkResult"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"description": "Administrator access required."
},
"429": {
"description": "Rate limit exceeded (5 per minute per user)."
},
"500": {
"description": "The operation failed as a whole. Nothing partial is reported."
}
}
}
},
"/api/bulk/move": {
"post": {
"operationId": "bulk-move",
"summary": "Move pages under a new parent",
"description": "Re-parents up to 100 pages. A page already under the target counts as moved.\n\nRETRY SAFETY. Each item is convergent, so re-sending the same request after a partial failure is safe: a page already deleted counts as deleted, and a page already under the target parent counts as moved. A client that retries the whole batch therefore converges rather than double-counting or erroring. There is no server-side ledger of what a previous call did — the guarantee comes from each item being idempotent, not from request de-duplication.\n\nAt most 100 page ids per call; more returns 400. This is a hard service limit, not a page size — there is no continuation token. A migration splits its own work into batches.\n\nAdministrators only.\n\nEvery call is written to the audit log.\n\nThree moves are refused per page and reported as that page's failure, not as a request error:\n- into itself or one of its own descendants (it would detach the subtree),\n- across languages — language folders are independent content trees, so this would be a relocation between intranets rather than a translation,\n- the homepage, which is protected.\n\nIf the target parent itself is missing or not writable, EVERY page in the batch fails with that reason and nothing is attempted.\n\nAn empty targetParentId is rejected as a 400 here. Note that the underlying move treats an empty target as 'the root of the page's own language', but this endpoint requires an explicit parent.",
"tags": [
"Bulk"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"pageIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 100,
"description": "Page unique ids. Must be non-empty."
},
"targetParentId": {
"type": "string",
"description": "Unique id of the new parent. Required and non-empty."
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "When true nothing is changed and the response is a BulkValidation envelope instead of a BulkResult. Equivalent to calling /api/bulk/validate with the same ids."
}
},
"required": [
"pageIds",
"targetParentId"
]
}
}
}
},
"responses": {
"200": {
"description": "Every page succeeded.",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/BulkResult"
},
{
"$ref": "#/components/schemas/BulkValidation"
}
],
"description": "BulkValidation when dryRun was true, BulkResult otherwise."
}
}
}
},
"207": {
"description": "Multi-Status: at least one page failed and at least the attempt was made. Read results[] for the per-page outcome. The overall HTTP call succeeded — do not treat this as an error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BulkResult"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"description": "Administrator access required."
},
"429": {
"description": "Rate limit exceeded (5 per minute per user)."
},
"500": {
"description": "The operation failed as a whole. Nothing partial is reported."
}
}
}
},
"/api/bulk/update": {
"post": {
"operationId": "bulk-update",
"summary": "Update page properties in bulk",
"description": "Applies the same property changes to up to 100 pages.\n\nAt most 100 page ids per call; more returns 400. This is a hard service limit, not a page size — there is no continuation token. A migration splits its own work into batches.\n\nAdministrators only.\n\nUnlike delete and move this is not inherently convergent — re-sending applies the same values again, which is harmless for the absolute updates supported here but is not a general guarantee.\n\nEvery call is written to the audit log, including which fields were touched.",
"tags": [
"Bulk"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"pageIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 100,
"description": "Page unique ids. Must be non-empty."
},
"updates": {
"type": "object",
"additionalProperties": true,
"minProperties": 1,
"description": "Properties to set on every listed page, e.g. {\"metadata\": {\"category\": \"news\"}}. Must be a non-empty object."
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "When true nothing is changed and the response is a BulkValidation envelope instead of a BulkResult. Equivalent to calling /api/bulk/validate with the same ids."
}
},
"required": [
"pageIds",
"updates"
]
}
}
}
},
"responses": {
"200": {
"description": "Every page succeeded.",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/BulkResult"
},
{
"$ref": "#/components/schemas/BulkValidation"
}
],
"description": "BulkValidation when dryRun was true, BulkResult otherwise."
}
}
}
},
"207": {
"description": "Multi-Status: at least one page failed and at least the attempt was made. Read results[] for the per-page outcome. The overall HTTP call succeeded — do not treat this as an error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BulkResult"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"description": "Administrator access required."
},
"429": {
"description": "Rate limit exceeded (5 per minute per user)."
},
"500": {
"description": "The operation failed as a whole. Nothing partial is reported."
}
}
}
},
"/api/bulk/validate": {
"post": {
"operationId": "bulk-validate",
"summary": "Dry-run a bulk operation",
"description": "Reports which of the submitted pages the caller may operate on, without changing anything. This IS the dry run — there is no separate mode; validate and execute are different endpoints.\n\nAt most 100 page ids per call; more returns 400. This is a hard service limit, not a page size — there is no continuation token. A migration splits its own work into batches.\n\nAdministrators only.\n\nRate limited to 20 per minute, deliberately looser than the mutating endpoints (5 per minute): checking before acting is behaviour worth keeping cheap.",
"tags": [
"Bulk"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"pageIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"maxItems": 100
},
"operation": {
"type": "string",
"enum": [
"delete",
"move",
"update"
],
"description": "Which permission to test: delete checks canDelete, move and update check canWrite."
}
},
"required": [
"pageIds",
"operation"
]
}
}
}
},
"responses": {
"200": {
"description": "Validation outcome",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BulkValidation"
}
}
}
},
"400": {
"$ref": "#/components/responses/BadRequest"
},
"401": {
"$ref": "#/components/responses/Unauthorized"
},
"403": {
"description": "Administrator access required."
},
"429": {
"description": "Rate limit exceeded (20 per minute per user)."
},
"500": {
"description": "Validation failed."
}
}
}
},
"/api/calendar/calendars": {
"get": {
"operationId": "get-calendars",
"summary": "List available calendars",
"description": "Returns all calendars available to the current user (personal + shared)",
"tags": [
"Calendar"
],
"responses": {
"200": {
"description": "List of calendars",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"calendars": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Nextcloud calendar id. A STRING on the wire even though it is numeric."
},
"uri": {
"type": "string"
},
"displayName": {
"type": "string"
},
"color": {
"type": "string"
},
"isReadOnly": {
"type": "boolean"
}
}
}
}
}
}
}
}
},
"401": {
"description": "Authentication required"
},
"500": {
"description": "Failed to get calendars"
}
}
}
},
"/api/calendar/events": {
"get": {
"operationId": "get-calendar-events",
"summary": "Get calendar events",
"description": "Returns events from one or more calendars within a time range. Recurring events are expanded into individual occurrences. Private/confidential events are filtered out.",
"tags": [
"Calendar"
],
"parameters": [
{
"name": "calendarIds",
"in": "query",
"required": true,
"schema": {
"type": "string"
},
"description": "Comma-separated calendar IDs"
},
{
"name": "rangeStart",
"in": "query",
"schema": {
"type": "string",
"format": "date-time"
},
"description": "Start of date range (ISO 8601). Defaults to now"
},
{
"name": "rangeEnd",
"in": "query",
"schema": {
"type": "string",
"format": "date-time"
},
"description": "End of date range (ISO 8601). Defaults to 30 days from now"
},
{
"name": "limit",
"in": "query",
"schema": {
"type": "integer",
"default": 5,
"minimum": 1,
"maximum": 20
},
"description": "Maximum events to return"
}
],
"responses": {
"200": {
"description": "List of events",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uid": {
"type": "string"
},
"summary": {
"type": "string"
},
"location": {
"type": "string"
},
"start": {
"type": "string",
"format": "date-time"
},
"end": {
"type": "string",
"format": "date-time"
},
"isAllDay": {
"type": "boolean"
},
"calendarColor": {
"type": "string"
},
"calendarName": {
"type": "string"
}
}
}
}
}
}
}
}
},
"400": {
"description": "Invalid date format"
},
"401": {
"description": "Authentication required"
},
"500": {
"description": "Failed to get calendar events"
}
}
}
},
"/api/comments/{commentId}": {
"put": {
"operationId": "update-comment",
"summary": "Update comment",
"tags": [
"Comments"
],