-
Notifications
You must be signed in to change notification settings - Fork 13
/
spec.json
19556 lines (19556 loc) · 743 KB
/
spec.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
{
"openapi": "3.0.1",
"x-settings": {
"publish": true
},
"info": {
"title": "Miro Developer Platform",
"version": "v2.0",
"description": "<img src=\"https://content.pstmn.io/47449ea6-0ef7-4af2-bac1-e58a70e61c58/aW1hZ2UucG5n\" width=\"1685\" height=\"593\">\n\n### Miro Developer Platform concepts\n\n- New to the Miro Developer Platform? Interested in learning more about platform concepts??\n[Read our introduction page](https://beta.developers.miro.com/docs/introduction) and familiarize yourself with the Miro Developer Platform capabilities in a few minutes.\n\n\n### Getting started with the Miro REST API\n\n- [Quickstart (video):](https://beta.developers.miro.com/docs/try-out-the-rest-api-in-less-than-3-minutes) try the REST API in less than 3 minutes.\n- [Quickstart (article):](https://beta.developers.miro.com/docs/build-your-first-hello-world-app-1) get started and try the REST API in less than 3 minutes.\n\n\n### Miro REST API tutorials\n\nCheck out our how-to articles with step-by-step instructions and code examples so you can:\n\n- [Get started with OAuth 2.0 and Miro](https://beta.developers.miro.com/docs/getting-started-with-oauth)\n\n\n### Miro App Examples\n\nClone our [Miro App Examples repository](https://github.com/miroapp/app-examples) to get inspiration, customize, and explore apps built on top of Miro's Developer Platform 2.0.\n"
},
"servers": [
{
"url": "https://api.miro.com/"
}
],
"paths": {
"/v1/oauth/revoke": {
"post": {
"tags": ["tokens"],
"summary": "Revoke token",
"description": "Revoke the current access token. Revoking an access token means that the access token will no longer work. When an access token is revoked, the refresh token is also revoked and no longer valid. This does not uninstall the application for the user.",
"operationId": "revoke-token",
"parameters": [
{
"description": "Access token that you want to revoke",
"in": "query",
"name": "access_token",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"204": {
"description": "Token revoked"
},
"400": {
"description": "Failed to revoke token"
}
}
}
},
"/v1/oauth-token": {
"get": {
"tags": ["tokens"],
"summary": "Get access token information",
"description": "Get information about an access token, such as the token type, scopes, team, user, token creation date and time, and the user who created the token.",
"operationId": "token-info",
"responses": {
"200": {
"description": "Token information",
"content": {
"application/json": {
"schema": {
"title": "Token information",
"type": "object",
"required": ["type", "organization", "team", "createdBy", "user"],
"properties": {
"type": {
"type": "string"
},
"organization": {
"title": "Organization information",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": ["type", "name", "id"]
},
"team": {
"title": "Team information",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": ["type", "name", "id"]
},
"createdBy": {
"type": "object",
"title": "User information",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": ["type", "name", "id"]
},
"user": {
"type": "object",
"title": "User information",
"properties": {
"type": {
"type": "string"
},
"name": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": ["type", "name", "id"]
},
"scopes": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"400": {
"description": "Invalid token provided"
}
}
}
},
"/v2-experimental/apps/{app_id}/metrics": {
"get": {
"summary": "Get app metrics",
"description": "Returns a list of usage metrics for a specific app for a given time range, grouped by requested time period.\n\nThis endpoint requires an app management API token. It can be generated in the <a href=\"https://developers.miro.com/?features=appMetricsToken#your-apps\">Your Apps</a> section of Developer Hub. \n",
"operationId": "get-metrics",
"tags": ["app-management"],
"parameters": [
{
"in": "path",
"name": "app_id",
"required": true,
"schema": {
"type": "string"
},
"description": "ID of the app to get metrics for."
},
{
"in": "query",
"name": "startDate",
"required": true,
"schema": {
"type": "string",
"format": "date"
},
"description": "Start date of the period in UTC format. For example, 2024-12-31."
},
{
"in": "query",
"name": "endDate",
"required": true,
"schema": {
"type": "string",
"format": "date"
},
"description": "End date of the period in UTC format. For example, 2024-12-31."
},
{
"in": "query",
"name": "period",
"schema": {
"type": "string",
"enum": ["DAY", "WEEK", "MONTH"],
"default": "WEEK"
},
"description": "Group data by this time period."
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"periodStart": {
"type": "string",
"description": "Date from which the metrics are aggregated.",
"format": "date"
},
"uniqueUsers": {
"type": "integer",
"description": "Number of unique users who performed at least one activity in the application."
},
"uniqueRecurringUsers": {
"type": "integer",
"description": "Number of unique users who have been active for more than one day over the past 30 days."
},
"uniqueOrganizations": {
"type": "integer",
"description": "Number of unique company accounts that have installed the application."
},
"installations": {
"type": "integer",
"description": "Number of application installations for a team."
},
"uninstallations": {
"type": "integer",
"description": "Number of application uninstallations for a team."
}
}
}
}
}
}
},
"404": {
"description": "App not found response",
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "App not found response",
"properties": {
"message": {
"type": "string"
},
"status": {
"type": "integer"
}
}
}
}
}
}
}
}
},
"/v2-experimental/apps/{app_id}/metrics-total": {
"get": {
"summary": "Get total app metrics",
"description": "Returns total usage metrics for a specific app since the app was created.\n\nThis endpoint requires an app management API token. It can be generated in <a href=\"https://developers.miro.com/?features=appMetricsToken#your-apps\">your apps</a> section of Developer Hub. \n",
"operationId": "get-metrics-total",
"tags": ["app-management"],
"parameters": [
{
"in": "path",
"name": "app_id",
"required": true,
"schema": {
"type": "string"
},
"description": "ID of the app to get total metrics for."
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"uniqueUsers": {
"type": "integer",
"description": "Number of unique users who performed at least one activity in the application."
},
"uniqueRecurringUsers": {
"type": "integer",
"description": "Number of unique users who have been active for more than one day over the past 30 days."
},
"uniqueOrganizations": {
"type": "integer",
"description": "Number of unique company accounts that have installed the application."
},
"installations": {
"type": "integer",
"description": "Number of application installations for a team."
},
"uninstallations": {
"type": "integer",
"description": "Number of application uninstallations for a team."
}
}
}
}
}
},
"404": {
"description": "App not found response",
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "App not found response",
"properties": {
"message": {
"type": "string",
"description": "Description of the error."
},
"status": {
"type": "integer",
"description": "HTTP status code."
}
}
}
}
}
}
}
}
},
"/v2/audit/logs": {
"get": {
"description": "Retrieves a page of audit events.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>auditlogs:read</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a>",
"operationId": "enterprise-get-audit-logs",
"parameters": [
{
"description": "Retrieve audit logs created after the date and time provided. This is the start date of the duration for which you want to retrieve audit logs. For example, if you want to retrieve audit logs between `2023-03-30T17:26:50.000Z` and `2023-04-30T17:26:50.000Z`, provide `2023-03-30T17:26:50.000Z` as the value for the `createdAfter` parameter.<br>Format: UTC, adheres to [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), including milliseconds and a [trailing Z offset](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).\"\n",
"example": "2023-03-30T17:26:50.000Z",
"in": "query",
"name": "createdAfter",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Retrieve audit logs created before the date and time provided. This is the end date of the duration for which you want to retrieve audit logs. For example, if you want to retrieve audit logs between `2023-03-30T17:26:50.000Z` and `2023-04-30T17:26:50.000Z`, provide `2023-04-30T17:26:50.000Z` as the value for the `createdBefore` parameter.<br>Format: UTC, adheres to [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601), including milliseconds and a [trailing Z offset](https://en.wikipedia.org/wiki/ISO_8601#Coordinated_Universal_Time_(UTC)).\n",
"example": "2023-04-30T17:26:50.000Z",
"in": "query",
"name": "createdBefore",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "A cursor-paginated method returns a portion of the total set of results based on the `limit` specified and a `cursor` that points to the next portion of the results. To retrieve the next set of results of the collection, set the `cursor` parameter in your next request to the appropriate cursor value returned in the response.",
"in": "query",
"name": "cursor",
"schema": {
"type": "string"
}
},
{
"description": "Maximum number of results returned based on the `limit` specified in the request. For example, if there are `30` results, the request has no `cursor` value, and the `limit` is set to `20`,the `size` of the results will be `20`. The rest of the results will not be returned. To retrieve the rest of the results, you must make another request and set the appropriate value for the `cursor` parameter value that you obtained from the response.<br>Default: `100`\n",
"example": 100,
"in": "query",
"name": "limit",
"schema": {
"type": "integer"
}
},
{
"description": "Sort order in which you want to view the result set. Based on the value you provide, the results are sorted in an ascending or descending order of the audit log creation date (audit log `createdAt` parameter).<br>Default: `ASC`\n",
"example": "ASC",
"in": "query",
"name": "sorting",
"schema": {
"type": "string",
"enum": ["ASC", "DESC"]
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AuditPage"
}
}
},
"description": "Audit logs fetched"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"409": {
"$ref": "#/components/responses/409"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get audit logs",
"tags": ["Audit Logs"]
}
},
"/v2/orgs/{org_id}/data-classification-settings": {
"get": {
"description": "Retrieves board classification settings for an existing organization.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>organizations:read</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-organization-settings-get",
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataClassificationOrganizationSettings"
}
}
},
"description": "Organization board classification settings"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get organization settings",
"tags": ["Board classification: Organization level"]
}
},
"/v2/orgs/{org_id}/teams/{team_id}/data-classification": {
"patch": {
"description": "Updates board classification for not-classified only or all boards in an existing team.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:write</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 4</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-team-boards-bulk",
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "id of the team",
"example": "3074457345618265000",
"in": "path",
"name": "team_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateBoardsDataClassificationLabelRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateBoardsDataClassificationLabel"
}
}
},
"description": "Number of updated boards"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Bulk update boards classification",
"tags": ["Board classification: Team level"]
}
},
"/v2/orgs/{org_id}/teams/{team_id}/data-classification-settings": {
"get": {
"description": "Retrieves board classification settings for an existing team.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>organizations:teams:read</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-team-settings-get",
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "id of the team",
"example": "3074457345618265000",
"in": "path",
"name": "team_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataClassificationTeamSettings"
}
}
},
"description": "Team board classification settings"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get team settings",
"tags": ["Board classification: Team level"]
},
"patch": {
"description": "Updates board classification settings for an existing team.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>organizations:teams:write</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-team-settings-set",
"x-settings": {
"skip-tests": true
},
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "id of the team",
"example": "3074457345618265000",
"in": "path",
"name": "team_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateTeamSettingsRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataClassificationTeamSettings"
}
}
},
"description": "Team board classification settings"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Update team settings",
"tags": ["Board classification: Team level"]
}
},
"/v2/orgs/{org_id}/teams/{team_id}/boards/{board_id}/data-classification": {
"get": {
"description": "Retrieves board classification for a board.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:read</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-board-get",
"x-settings": {
"skip-tests": true
},
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "id of the team",
"example": "3074457345618265000",
"in": "path",
"name": "team_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique identifier of the board that you want to retrieve.",
"example": "o9J_kzlUDmo=",
"in": "path",
"name": "board_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoardDataClassificationLabel"
}
}
},
"description": "Board classification"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get board classification",
"tags": ["Board classification: Board level"]
},
"post": {
"description": "Updates board classification for an existing board.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:write</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 2</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-dataclassification-board-set",
"x-settings": {
"skip-tests": true
},
"parameters": [
{
"description": "id of the organization",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "id of the team",
"example": "3074457345618265000",
"in": "path",
"name": "team_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique identifier of the board that you want to update.",
"example": "o9J_kzlUDmo=",
"in": "path",
"name": "board_id",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataClassificationLabelId"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoardDataClassificationLabel"
}
}
},
"description": "Board classification"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Update board classification",
"tags": ["Board classification: Board level"]
}
},
"/v2/orgs/{org_id}/boards/export/jobs": {
"post": {
"x-settings": {
"skip-tests": true
},
"description": "Creates an export job for one or more boards.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:export</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 4</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enabled in the Settings. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-create-board-export",
"parameters": [
{
"description": "Unique identifier of the organization.",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique identifier of the board export job.",
"example": "92343229-c532-446d-b8cb-2f155bedb807",
"in": "query",
"name": "request_id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateBoardExportRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoardExportJobId"
}
}
},
"description": "Unique identifier of the board export job"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Create board export job",
"tags": ["Board export job"]
}
},
"/v2/orgs/{org_id}/boards/export/jobs/{job_id}": {
"get": {
"x-settings": {
"skip-tests": true
},
"description": "Retrieves the status of the board export job.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:export</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 4</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enabled in the Settings. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-board-export-job-status",
"parameters": [
{
"description": "Unique identifier of the organization.",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique identifier of the board export job.",
"example": "92343229-c532-446d-b8cb-2f155bedb807",
"in": "path",
"name": "job_id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoardExportJobStatus"
}
}
},
"description": "Board export job status"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get board export job status",
"tags": ["Board export job"]
}
},
"/v2/orgs/{org_id}/boards/export/jobs/{job_id}/results": {
"get": {
"x-settings": {
"skip-tests": true
},
"description": "Retrieves the result of the board export job. The response provides more information about the board export job, such as the S3 link to the files created.<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>boards:export</a> <br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 4</a> <br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin and eDiscovery is enabled in the Settings. You can request temporary access to Enterprise APIs using <a target=_blank href=\"https://miro-survey.typeform.com/to/BVPTNWJ9\">this form</a>.</p>",
"operationId": "enterprise-board-export-job-results",
"parameters": [
{
"description": "Unique identifier of the organization.",
"example": "3074457345821141000",
"in": "path",
"name": "org_id",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique identifier of the job.",
"example": "92343229-c532-446d-b8cb-2f155bedb807",
"in": "path",
"name": "job_id",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoardExportResult"
}
}
},
"description": "Board export job result"
},
"400": {
"$ref": "#/components/responses/400"
},
"401": {
"$ref": "#/components/responses/401"
},
"403": {
"$ref": "#/components/responses/403"
},
"404": {
"$ref": "#/components/responses/404"
},
"429": {
"$ref": "#/components/responses/429"
}
},
"summary": "Get results for board export job",
"tags": ["Board export job"]
}
},
"/v2/orgs/{org_id}/content-logs/items": {
"get": {
"x-settings": {
"skip-tests": true
},
"description": "Retrieves content changes for board items within your organization. Content changes are actions that users can perform on board items, such as updating a sticky note's text. You can retrieve results for a specific time period. You can also filter results based on the board IDs and the emails of users who created, modified, or deleted a board item. Additionally, results can be paginated for easier viewing and processing.\n<br/><h3>Required scope</h3> <a target=_blank href=https://developers.miro.com/reference/scopes>contentlogs:export</a>\n<br/><h3>Rate limiting</h3> <a target=_blank href=\"/docs/miro-rest-api-introduction#rate-limiting\">Level 4</a>\n<br/><h3>Enterprise only</h3> <p>This API is available only for <a target=_blank href=\"/reference/api-reference#enterprise-plan\">Enterprise plan</a> users. You can only use this endpoint if you have the role of a Company Admin.</p>\n",