-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-reference.json
More file actions
6197 lines (6197 loc) · 328 KB
/
api-reference.json
File metadata and controls
6197 lines (6197 loc) · 328 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
{
"metadata": {
"source": "https://developer.services.mimecast.com/apis",
"scraped_at": "2025-12-12T14:52:57.838923Z",
"total_endpoints": 257,
"categories": [
"Archivedataaccess",
"Audit Events",
"Account Management",
"Policy Management",
"Threatssecurity Eventsanddataforcg",
"Threat Management",
"Domain Management",
"Emailsecurityonboarding",
"Connector",
"Cloud Gateway",
"Userandgroup Management",
"Awareness Training"
]
},
"endpoints": [
{
"id": "emergency-contact",
"name": "Emergency Contact",
"category": "Account Management",
"method": "GET",
"path": "/account/cloud-gateway/v1/emergency-contact",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/account/cloud-gateway/v1/emergency-contact/get",
"last_updated": "2025-12-12T14:43:05.688832+00:00"
},
{
"id": "emergency-contact",
"name": "Emergency Contact",
"category": "Account Management",
"method": "PUT",
"path": "/account/cloud-gateway/v1/emergency-contact",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/account/cloud-gateway/v1/emergency-contact/put",
"last_updated": "2025-12-12T14:43:06.962623+00:00"
},
{
"id": "emergency-contact",
"name": "Emergency Contact",
"category": "Account Management",
"method": "PATCH",
"path": "/account/cloud-gateway/v1/emergency-contact",
"description": "Description Updates the Emergency Contact information for the account. Updates the Emergency Contact information for the account.",
"parameters": [
{
"name": "contactName",
"description": "string Name of the emergency contact. length \u2264 60"
},
{
"name": "contactEmailAddress",
"description": "string Email address of the emergency contact."
},
{
"name": "mobilePhone",
"description": "string Mobile number of emergency contact in international format (with +). Please see Country Calling Codes ."
},
{
"name": "telephone",
"description": "string Telephone of emergency contact in international format (with +). Please see Country Calling Codes ."
},
{
"name": "alternateEmailAddresses",
"description": "array Alternate Email address for the emergency contact must contain at most 4 items"
}
],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/account/cloud-gateway/v1/emergency-contact/patch",
"last_updated": "2025-12-12T14:43:08.235282+00:00"
},
{
"id": "get-account",
"name": "Get Account",
"category": "Account Management",
"method": "POST",
"path": "/api/account/get-account",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/api/account/get-account/post",
"last_updated": "2025-12-12T14:43:09.514953+00:00"
},
{
"id": "get-dashboard-notifications",
"name": "Get Dashboard Notifications",
"category": "Account Management",
"method": "POST",
"path": "/api/account/get-dashboard-notifications",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/api/account/get-dashboard-notifications/post",
"last_updated": "2025-12-12T14:43:10.779132+00:00"
},
{
"id": "get-support-info",
"name": "Get Support Info",
"category": "Account Management",
"method": "POST",
"path": "/api/account/get-support-info",
"description": "Description This endpoint returns support information that is associated with a Mimecast tenant. This endpoint returns support information that is associated with a Mimecast tenant.",
"parameters": [
{
"name": "data",
"description": "array expand_less"
},
{
"name": "object expand_less customerAdvocate string The name of the Mimecast Customer Advocate aligned to the customer account. customerDevelopmentManager string The name of the Customer Development Manager aligned to the customer account. hostingJurisdiction string The region that the customer account is hosted in. mailtoLink string A link to email Mimecast support. mainProduct string The main product that the customers has subscribed to. officePhone string The office phone number for the region that rovides support for the customer account. partnerName string The name of the partner aligned to the customer account if applicable. renewalDate string The customer's contract renewal date. supportJurisdiction string The region that provides support for the customer account. supportPackage string The support package that the customer has subscribed to.",
"description": "customerAdvocate string The name of the Mimecast Customer Advocate aligned to the customer account. customerDevelopmentManager string The name of the Customer Development Manager aligned to the customer account. hostingJurisdiction string The region that the customer account is hosted in. mailtoLink string A link to email Mimecast support. mainProduct string The main product that the customers has subscribed to. officePhone string The office phone number for the region that rovides support for the customer account. partnerName string The name of the partner aligned to the customer account if applicable. renewalDate string The customer's contract renewal date. supportJurisdiction string The region that provides support for the customer account. supportPackage string The support package that the customer has subscribed to."
},
{
"name": "customerAdvocate",
"description": "string The name of the Mimecast Customer Advocate aligned to the customer account."
},
{
"name": "customerDevelopmentManager",
"description": "string The name of the Customer Development Manager aligned to the customer account."
},
{
"name": "hostingJurisdiction",
"description": "string The region that the customer account is hosted in."
},
{
"name": "mailtoLink",
"description": "string A link to email Mimecast support."
},
{
"name": "mainProduct",
"description": "string The main product that the customers has subscribed to."
},
{
"name": "officePhone",
"description": "string The office phone number for the region that rovides support for the customer account."
},
{
"name": "partnerName",
"description": "string The name of the partner aligned to the customer account if applicable."
},
{
"name": "renewalDate",
"description": "string The customer's contract renewal date."
},
{
"name": "supportJurisdiction",
"description": "string The region that provides support for the customer account."
},
{
"name": "supportPackage",
"description": "string The support package that the customer has subscribed to."
},
{
"name": "fail",
"description": "array expand_less"
},
{
"name": "object expand_less errors array expand_less object expand_more key object The request item associated with this error",
"description": "errors array expand_less object expand_more key object The request item associated with this error"
},
{
"name": "errors",
"description": "array expand_less"
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "key",
"description": "object The request item associated with this error"
},
{
"name": "customerAdvocate",
"description": "string The name of the Mimecast Customer Advocate aligned to the customer account."
},
{
"name": "customerDevelopmentManager",
"description": "string The name of the Customer Development Manager aligned to the customer account."
},
{
"name": "hostingJurisdiction",
"description": "string The region that the customer account is hosted in."
},
{
"name": "mailtoLink",
"description": "string A link to email Mimecast support."
},
{
"name": "mainProduct",
"description": "string The main product that the customers has subscribed to."
},
{
"name": "officePhone",
"description": "string The office phone number for the region that rovides support for the customer account."
},
{
"name": "partnerName",
"description": "string The name of the partner aligned to the customer account if applicable."
},
{
"name": "renewalDate",
"description": "string The customer's contract renewal date."
},
{
"name": "supportJurisdiction",
"description": "string The region that provides support for the customer account."
},
{
"name": "supportPackage",
"description": "string The support package that the customer has subscribed to."
}
],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/api/account/get-support-info/post",
"last_updated": "2025-12-12T14:43:12.137540+00:00"
},
{
"id": "provisioning-get-packages",
"name": "Provisioning/Get Packages",
"category": "Account Management",
"method": "POST",
"path": "/api/provisioning/get-packages",
"description": "Description This endpoint returns products that are available to be provisioned by a partner. This endpoint returns products that are available to be provisioned by a partner.",
"parameters": [
{
"name": "data",
"description": "array expand_less"
},
{
"name": "object expand_less products object expand_less An object containing the product ID and name values. id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product.",
"description": "products object expand_less An object containing the product ID and name values. id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product. id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product."
},
{
"name": "products",
"description": "object expand_less An object containing the product ID and name values."
},
{
"name": "id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product.",
"description": "id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product."
},
{
"name": "id",
"description": "string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts."
},
{
"name": "name",
"description": "string The name of the product."
},
{
"name": "fail",
"description": "array expand_less"
},
{
"name": "object expand_less errors array expand_less object expand_more key object The request item associated with this error",
"description": "errors array expand_less object expand_more key object The request item associated with this error"
},
{
"name": "errors",
"description": "array expand_less"
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "key",
"description": "object The request item associated with this error"
},
{
"name": "products",
"description": "object expand_less An object containing the product ID and name values."
},
{
"name": "id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product.",
"description": "id string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts. name string The name of the product."
},
{
"name": "id",
"description": "string The ID of the product. This is the value that should be used in the \"product\" array when creating and updating accounts."
},
{
"name": "name",
"description": "string The name of the product."
}
],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/api/provisioning/get-packages/post",
"last_updated": "2025-12-12T14:43:13.455225+00:00"
},
{
"id": "create",
"name": "Create",
"category": "Account Management",
"method": "POST",
"path": "/config-snapshot/v1/create",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/config-snapshot/v1/create/post",
"last_updated": "2025-12-12T14:43:14.725125+00:00"
},
{
"id": "export",
"name": "Export",
"category": "Account Management",
"method": "POST",
"path": "/config-snapshot/v1/export",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/config-snapshot/v1/export/post",
"last_updated": "2025-12-12T14:43:16.045505+00:00"
},
{
"id": "list",
"name": "List",
"category": "Account Management",
"method": "POST",
"path": "/config-snapshot/v1/list",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/config-snapshot/v1/list/post",
"last_updated": "2025-12-12T14:43:17.302369+00:00"
},
{
"id": "restore",
"name": "Restore",
"category": "Account Management",
"method": "POST",
"path": "/config-snapshot/v1/restore",
"description": "Description Restore a backup snapshot of the customers Mimecast configurations for: Managed Senders, Managed URLs and Profile Groups. The configurations can be restored in: Restore a backup snapshot of the customers Mimecast configurations for: Managed Senders, Managed URLs and Profile Groups. The configurations can be restored in: Append Mode - restores deleted entries by addition to the current hierarchy i.e., new entries after the backup are not deleted. Append Mode - restores deleted entries by addition to the current hierarchy i.e., new entries after the backup are not deleted. Append Mode Append Mode - restores deleted entries by addition to the current hierarchy i.e., new entries after the backup are not deleted. Overwrite Mode \u2013 restore deleted entries by replacing the current hierarchy i.e., new entries after the backup are deleted. Overwrite Mode \u2013 restore deleted entries by replacing the current hierarchy i.e., new entries after the backup are deleted. Overwrite Mode Overwrite Mode \u2013 restore deleted entries by replacing the current hierarchy i.e., new entries after the backup are deleted.",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain exactly 1 item"
},
{
"name": "object expand_less backupType (required) string Type of snapshot. The following values are supported: managedsenders, managedurls, profilegroups. mode (required) string Restore mode. The following values are supported: append, overwrite. restoreSource (required) string Restore snapshot from source GUID. scope (required) object expand_less Scope of the restore. unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1.",
"description": "backupType (required) string Type of snapshot. The following values are supported: managedsenders, managedurls, profilegroups. mode (required) string Restore mode. The following values are supported: append, overwrite. restoreSource (required) string Restore snapshot from source GUID. scope (required) object expand_less Scope of the restore. unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1. unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1."
},
{
"name": "backupType (required)",
"description": "string Type of snapshot. The following values are supported: managedsenders, managedurls, profilegroups."
},
{
"name": "mode (required)",
"description": "string Restore mode. The following values are supported: append, overwrite."
},
{
"name": "restoreSource (required)",
"description": "string Restore snapshot from source GUID."
},
{
"name": "scope (required)",
"description": "object expand_less Scope of the restore."
},
{
"name": "unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1.",
"description": "unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1."
},
{
"name": "unit (required)",
"description": "string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid"
},
{
"name": "value",
"description": "array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1."
},
{
"name": "backupType (required)",
"description": "string Type of snapshot. The following values are supported: managedsenders, managedurls, profilegroups."
},
{
"name": "mode (required)",
"description": "string Restore mode. The following values are supported: append, overwrite."
},
{
"name": "restoreSource (required)",
"description": "string Restore snapshot from source GUID."
},
{
"name": "scope (required)",
"description": "object expand_less Scope of the restore."
},
{
"name": "unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1.",
"description": "unit (required) string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid value array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1."
},
{
"name": "unit (required)",
"description": "string Scoped restore unit. The following values are supported: for managedsenders backupType: all, recipient. for managedurls backupType: all, blocked, permitted. for profilegroups backupType: all, groupid"
},
{
"name": "value",
"description": "array Scoped restore values. The following values are supported: for managedsenders backupType: an array of recipient email addresses. for managedurls backupType: N/A. for profilegroups backypType: the id of the profile group the operation is scoped to, taken from the backup file - note this value must be provided as an array, but this must be of length 1."
}
],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/config-snapshot/v1/restore/post",
"last_updated": "2025-12-12T14:43:18.609223+00:00"
},
{
"id": "-identity-whoami",
"name": "/Identity/Whoami",
"category": "Account Management",
"method": "GET",
"path": "/identity/whoami",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/accountmanagement/1/routes/identity/whoami/get",
"last_updated": "2025-12-12T14:43:19.869452+00:00"
},
{
"id": "get-archive-search-logs",
"name": "Get Archive Search Logs",
"category": "Audit Events",
"method": "POST",
"path": "/api/archive/get-archive-search-logs",
"description": "Description Retrieves archive search logs. Retrieves archive search logs.",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain at most 1 item"
},
{
"name": "object expand_less query string Text to search within the logs, which can contain email addresses.",
"description": "query string Text to search within the logs, which can contain email addresses."
},
{
"name": "query",
"description": "string Text to search within the logs, which can contain email addresses."
},
{
"name": "query",
"description": "string Text to search within the logs, which can contain email addresses."
}
],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/archive/get-archive-search-logs/post",
"last_updated": "2025-12-12T14:43:27.444967+00:00"
},
{
"id": "get-search-logs",
"name": "Get Search Logs",
"category": "Audit Events",
"method": "POST",
"path": "/api/archive/get-search-logs",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/archive/get-search-logs/post",
"last_updated": "2025-12-12T14:43:28.770519+00:00"
},
{
"id": "get-view-logs",
"name": "Get View Logs",
"category": "Audit Events",
"method": "POST",
"path": "/api/archive/get-view-logs",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/archive/get-view-logs/post",
"last_updated": "2025-12-12T14:43:30.041656+00:00"
},
{
"id": "get-audit-events",
"name": "Get Audit Events",
"category": "Audit Events",
"method": "POST",
"path": "/api/audit/get-audit-events",
"description": "Description Returns the audit events matching the request. Returns the audit events matching the request.",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain exactly 1 item"
},
{
"name": "object expand_less categories array A list of audit category types. Use values from the \"code\" response field from the /api/audit/get-categories endpoint. If no categories are provided, all possible categories are returned. endDateTime (required) string (yyyy-MM-dd'T'HH:mm:ssZ) The end date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). query string A character string to search for the audit events. startDateTime (required) string (yyyy-MM-dd'T'HH:mm:ssZ) The start date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). Historical lookup is restricted to last 60 days.",
"description": "categories array A list of audit category types. Use values from the \"code\" response field from the /api/audit/get-categories endpoint. If no categories are provided, all possible categories are returned. endDateTime (required) string (yyyy-MM-dd'T'HH:mm:ssZ) The end date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). query string A character string to search for the audit events. startDateTime (required) string (yyyy-MM-dd'T'HH:mm:ssZ) The start date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). Historical lookup is restricted to last 60 days."
},
{
"name": "categories",
"description": "array A list of audit category types. Use values from the \"code\" response field from the /api/audit/get-categories endpoint. If no categories are provided, all possible categories are returned."
},
{
"name": "endDateTime (required)",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The end date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000)."
},
{
"name": "query",
"description": "string A character string to search for the audit events."
},
{
"name": "startDateTime (required)",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The start date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). Historical lookup is restricted to last 60 days."
},
{
"name": "categories",
"description": "array A list of audit category types. Use values from the \"code\" response field from the /api/audit/get-categories endpoint. If no categories are provided, all possible categories are returned."
},
{
"name": "endDateTime (required)",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The end date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000)."
},
{
"name": "query",
"description": "string A character string to search for the audit events."
},
{
"name": "startDateTime (required)",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The start date in ISO 8601 date time format (e.g. 2011-12-03T10:15:30+0000). Historical lookup is restricted to last 60 days."
}
],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/audit/get-audit-events/post",
"last_updated": "2025-12-12T14:43:31.329173+00:00"
},
{
"id": "get-categories",
"name": "Get Categories",
"category": "Audit Events",
"method": "POST",
"path": "/api/audit/get-categories",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/audit/get-categories/post",
"last_updated": "2025-12-12T14:43:32.601696+00:00"
},
{
"id": "get-held-release-logs",
"name": "Get Held Release Logs",
"category": "Audit Events",
"method": "POST",
"path": "/api/gateway/get-held-release-logs",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/gateway/get-held-release-logs/post",
"last_updated": "2025-12-12T14:43:33.871859+00:00"
},
{
"id": "get-rejections",
"name": "Get Rejections",
"category": "Audit Events",
"method": "POST",
"path": "/api/gateway/get-rejections",
"description": "Description This endpoint can be used to find rejected messages and the reasons for their rejection. This endpoint can be used to find rejected messages and the reasons for their rejection.",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain exactly 1 item"
},
{
"name": "object expand_less admin boolean Specifies if the request is for an admin or user-level. If set to true, the request will return messages for all users. Default value is false. end string (yyyy-MM-dd'T'HH:mm:ssZ) The end date of results to return in ISO 8601 format. Default value is the current date. mailbox string Get rejections for a given user. If admin is set to true and no mailbox is provided, will return rejections for all users. Otherwise if no mailbox is provided, then will return rejections for the authenticated account. searchBy object expand_less Accepts search filter field and value to apply when searching. fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied start string (yyyy-MM-dd'T'HH:mm:ssZ) The start date of results to return in ISO 8601 format. Default value is start of the current day.",
"description": "admin boolean Specifies if the request is for an admin or user-level. If set to true, the request will return messages for all users. Default value is false. end string (yyyy-MM-dd'T'HH:mm:ssZ) The end date of results to return in ISO 8601 format. Default value is the current date. mailbox string Get rejections for a given user. If admin is set to true and no mailbox is provided, will return rejections for all users. Otherwise if no mailbox is provided, then will return rejections for the authenticated account. searchBy object expand_less Accepts search filter field and value to apply when searching. fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied start string (yyyy-MM-dd'T'HH:mm:ssZ) The start date of results to return in ISO 8601 format. Default value is start of the current day."
},
{
"name": "admin",
"description": "boolean Specifies if the request is for an admin or user-level. If set to true, the request will return messages for all users. Default value is false."
},
{
"name": "end",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The end date of results to return in ISO 8601 format. Default value is the current date."
},
{
"name": "mailbox",
"description": "string Get rejections for a given user. If admin is set to true and no mailbox is provided, will return rejections for all users. Otherwise if no mailbox is provided, then will return rejections for the authenticated account."
},
{
"name": "searchBy",
"description": "object expand_less Accepts search filter field and value to apply when searching."
},
{
"name": "fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied",
"description": "fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied"
},
{
"name": "fieldName",
"description": "string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp"
},
{
"name": "value",
"description": "string The value of which the filter will be applied"
},
{
"name": "start",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The start date of results to return in ISO 8601 format. Default value is start of the current day."
},
{
"name": "admin",
"description": "boolean Specifies if the request is for an admin or user-level. If set to true, the request will return messages for all users. Default value is false."
},
{
"name": "end",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The end date of results to return in ISO 8601 format. Default value is the current date."
},
{
"name": "mailbox",
"description": "string Get rejections for a given user. If admin is set to true and no mailbox is provided, will return rejections for all users. Otherwise if no mailbox is provided, then will return rejections for the authenticated account."
},
{
"name": "searchBy",
"description": "object expand_less Accepts search filter field and value to apply when searching."
},
{
"name": "fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied",
"description": "fieldName string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp value string The value of which the filter will be applied"
},
{
"name": "fieldName",
"description": "string The field to be filtered on. Possible values are all, from, to, type, info, remoteIp"
},
{
"name": "value",
"description": "string The value of which the filter will be applied"
},
{
"name": "start",
"description": "string (yyyy-MM-dd'T'HH:mm:ssZ) The start date of results to return in ISO 8601 format. Default value is start of the current day."
}
],
"url": "https://developer.services.mimecast.com/docs/auditevents/1/routes/api/gateway/get-rejections/post",
"last_updated": "2025-12-12T14:43:35.237068+00:00"
},
{
"id": "get-performance-details",
"name": "Get Performance Details",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-performance-details",
"description": "Description This API endpoint can be used to get Awareness Training Mime | OS Training Module user level Performance details by Department and Performance Type (data displayed on Performance > Achievements Details). This API endpoint can be used to get Awareness Training Mime | | OS Training Module user level Performance details by Department and Performance Type (data displayed on Performance > Achievements Details).",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain at most 1 item"
},
{
"name": "object expand_less attributeIds array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custome. A maximum of 3 attribute IDs can be provided. filterBy array expand_less Allows to filter by specific video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more or video_count_all. The default value is video_count_all. object expand_more includeUserDetails boolean If set to true, user details will be included in the response. The default value is false. searchBy array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required. object expand_more",
"description": "attributeIds array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custome. A maximum of 3 attribute IDs can be provided. filterBy array expand_less Allows to filter by specific video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more or video_count_all. The default value is video_count_all. object expand_more includeUserDetails boolean If set to true, user details will be included in the response. The default value is false. searchBy array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required. object expand_more"
},
{
"name": "attributeIds",
"description": "array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custome. A maximum of 3 attribute IDs can be provided."
},
{
"name": "filterBy",
"description": "array expand_less Allows to filter by specific video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more or video_count_all. The default value is video_count_all."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "includeUserDetails",
"description": "boolean If set to true, user details will be included in the response. The default value is false."
},
{
"name": "searchBy",
"description": "array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "attributeIds",
"description": "array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custome. A maximum of 3 attribute IDs can be provided."
},
{
"name": "filterBy",
"description": "array expand_less Allows to filter by specific video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more or video_count_all. The default value is video_count_all."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "includeUserDetails",
"description": "boolean If set to true, user details will be included in the response. The default value is false."
},
{
"name": "searchBy",
"description": "array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required."
},
{
"name": "object expand_more",
"description": ""
}
],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-performance-details/post",
"last_updated": "2025-12-12T14:43:42.350565+00:00"
},
{
"id": "get-performance-summary",
"name": "Get Performance Summary",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-performance-summary",
"description": "Description This API endpoint can be used to get the Awareness Training Mime | OS Training Module company-level Performance Summary by total user answer count. (Data displayed on Performance > Achievements Dashboard) This API endpoint can be used to get the Awareness Training Mime | | OS Training Module company-level Performance Summary by total user answer count. (Data displayed on Performance > Achievements Dashboard)",
"parameters": [
{
"name": "data",
"description": "array expand_less"
},
{
"name": "object expand_less departmentCompletionStats array expand_less Breakdown of the completion status by company department. object expand_more numFourOrMoreIncorrect integer (int32) Total count of users that have answered 4 or more training videos incorrectly. numOneIncorrect integer (int32) Total count of users that have answered one training video incorrectly. numParticipating integer (int32) Total count of the users participating in training. numThreeIncorrect integer (int32) Total count of users that have answered 3 training videos incorrectly. numTwoIncorrect integer (int32) Total count of users that have answered two training videos incorrectly. numVideosNotWatched integer (int32) Total count of the vidoes that have not yet been watched by users. numVideosSent integer (int32) Total count of the vidoes sent out to users. numZeroIncorrect integer (int32) Total count of users that have not answered any questions incorrectly.",
"description": "departmentCompletionStats array expand_less Breakdown of the completion status by company department. object expand_more numFourOrMoreIncorrect integer (int32) Total count of users that have answered 4 or more training videos incorrectly. numOneIncorrect integer (int32) Total count of users that have answered one training video incorrectly. numParticipating integer (int32) Total count of the users participating in training. numThreeIncorrect integer (int32) Total count of users that have answered 3 training videos incorrectly. numTwoIncorrect integer (int32) Total count of users that have answered two training videos incorrectly. numVideosNotWatched integer (int32) Total count of the vidoes that have not yet been watched by users. numVideosSent integer (int32) Total count of the vidoes sent out to users. numZeroIncorrect integer (int32) Total count of users that have not answered any questions incorrectly."
},
{
"name": "departmentCompletionStats",
"description": "array expand_less Breakdown of the completion status by company department."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "numFourOrMoreIncorrect",
"description": "integer (int32) Total count of users that have answered 4 or more training videos incorrectly."
},
{
"name": "numOneIncorrect",
"description": "integer (int32) Total count of users that have answered one training video incorrectly."
},
{
"name": "numParticipating",
"description": "integer (int32) Total count of the users participating in training."
},
{
"name": "numThreeIncorrect",
"description": "integer (int32) Total count of users that have answered 3 training videos incorrectly."
},
{
"name": "numTwoIncorrect",
"description": "integer (int32) Total count of users that have answered two training videos incorrectly."
},
{
"name": "numVideosNotWatched",
"description": "integer (int32) Total count of the vidoes that have not yet been watched by users."
},
{
"name": "numVideosSent",
"description": "integer (int32) Total count of the vidoes sent out to users."
},
{
"name": "numZeroIncorrect",
"description": "integer (int32) Total count of users that have not answered any questions incorrectly."
},
{
"name": "fail",
"description": "array expand_less"
},
{
"name": "object expand_less errors array expand_less object expand_more key object The request item associated with this error",
"description": "errors array expand_less object expand_more key object The request item associated with this error"
},
{
"name": "errors",
"description": "array expand_less"
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "key",
"description": "object The request item associated with this error"
},
{
"name": "departmentCompletionStats",
"description": "array expand_less Breakdown of the completion status by company department."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "numFourOrMoreIncorrect",
"description": "integer (int32) Total count of users that have answered 4 or more training videos incorrectly."
},
{
"name": "numOneIncorrect",
"description": "integer (int32) Total count of users that have answered one training video incorrectly."
},
{
"name": "numParticipating",
"description": "integer (int32) Total count of the users participating in training."
},
{
"name": "numThreeIncorrect",
"description": "integer (int32) Total count of users that have answered 3 training videos incorrectly."
},
{
"name": "numTwoIncorrect",
"description": "integer (int32) Total count of users that have answered two training videos incorrectly."
},
{
"name": "numVideosNotWatched",
"description": "integer (int32) Total count of the vidoes that have not yet been watched by users."
},
{
"name": "numVideosSent",
"description": "integer (int32) Total count of the vidoes sent out to users."
},
{
"name": "numZeroIncorrect",
"description": "integer (int32) Total count of users that have not answered any questions incorrectly."
}
],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-performance-summary/post",
"last_updated": "2025-12-12T14:43:43.772171+00:00"
},
{
"id": "get-safe-score-details",
"name": "Get Safe Score Details",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-safe-score-details",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-safe-score-details/post",
"last_updated": "2025-12-12T14:43:45.050690+00:00"
},
{
"id": "get-safe-score-summary",
"name": "Get Safe Score Summary",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-safe-score-summary",
"description": "Description This API endpoint can be used to get Awareness Training Mime | OS Training SAFE Score company-level Summary by User Count per User Risk Grade. (Data displayed on Performance > User Risk Dashboard) This API endpoint can be used to get Awareness Training Mime | | OS Training SAFE Score company-level Summary by User Count per User Risk Grade. (Data displayed on Performance > User Risk Dashboard)",
"parameters": [
{
"name": "data",
"description": "array expand_less"
},
{
"name": "object expand_less scoreCounts object An object containing the count of each letter grade score, from A-F.",
"description": "scoreCounts object An object containing the count of each letter grade score, from A-F."
},
{
"name": "scoreCounts",
"description": "object An object containing the count of each letter grade score, from A-F."
},
{
"name": "fail",
"description": "array expand_less"
},
{
"name": "object expand_less errors array expand_less object expand_more key object The request item associated with this error",
"description": "errors array expand_less object expand_more key object The request item associated with this error"
},
{
"name": "errors",
"description": "array expand_less"
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "key",
"description": "object The request item associated with this error"
},
{
"name": "scoreCounts",
"description": "object An object containing the count of each letter grade score, from A-F."
}
],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-safe-score-summary/post",
"last_updated": "2025-12-12T14:43:46.354505+00:00"
},
{
"id": "get-watchlist-details",
"name": "Get Watchlist Details",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-watchlist-details",
"description": "Description This API endpoint can be used to get Awareness Training Mime | OS Training Module user level Watchlist details by Department and Watchlist Type. (Data displayed on Performance > Watchlist Details) This API endpoint can be used to get Awareness Training Mime | | OS Training Module user level Watchlist details by Department and Watchlist Type. (Data displayed on Performance > Watchlist Details)",
"parameters": [
{
"name": "data",
"description": "array expand_less must contain at most 1 item"
},
{
"name": "object expand_less attributeIds array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custom. A maximum of 3 attribute IDs can be provided. filterBy array expand_less Allows filtering by specific watchlist video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more, video_count_1_or_more. If filterBy is not set, the endpoint will default to video_count_1_or_more. object expand_more searchBy array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required. object expand_more",
"description": "attributeIds array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custom. A maximum of 3 attribute IDs can be provided. filterBy array expand_less Allows filtering by specific watchlist video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more, video_count_1_or_more. If filterBy is not set, the endpoint will default to video_count_1_or_more. object expand_more searchBy array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required. object expand_more"
},
{
"name": "attributeIds",
"description": "array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custom. A maximum of 3 attribute IDs can be provided."
},
{
"name": "filterBy",
"description": "array expand_less Allows filtering by specific watchlist video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more, video_count_1_or_more. If filterBy is not set, the endpoint will default to video_count_1_or_more."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "searchBy",
"description": "array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "attributeIds",
"description": "array A list of Mimecast secure IDs for attributes to be used when searchBy is set to custom. A maximum of 3 attribute IDs can be provided."
},
{
"name": "filterBy",
"description": "array expand_less Allows filtering by specific watchlist video counts. The fieldName should always be set to 'type' and the value should be one of video_count_0, video_count_1, video_count_2, video_count_3, video_count_4_or_more, video_count_1_or_more. If filterBy is not set, the endpoint will default to video_count_1_or_more."
},
{
"name": "object expand_more",
"description": ""
},
{
"name": "searchBy",
"description": "array expand_less Search parameters used to return specific users' information. Possible values are name, email, department or customAttribute. When customAttribute is used, the attributeIds array becomes required."
},
{
"name": "object expand_more",
"description": ""
}
],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-watchlist-details/post",
"last_updated": "2025-12-12T14:43:47.699751+00:00"
},
{
"id": "get-watchlist-summary",
"name": "Get Watchlist Summary",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/company/get-watchlist-summary",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/company/get-watchlist-summary/post",
"last_updated": "2025-12-12T14:43:48.982312+00:00"
},
{
"id": "get-campaign",
"name": "Get Campaign",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/phishing/campaign/get-campaign",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/phishing/campaign/get-campaign/post",
"last_updated": "2025-12-12T14:43:50.278663+00:00"
},
{
"id": "get-user-data",
"name": "Get User Data",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/phishing/campaign/get-user-data",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/phishing/campaign/get-user-data/post",
"last_updated": "2025-12-12T14:43:51.567038+00:00"
},
{
"id": "queue-get-queue",
"name": "Queue/Get Queue",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/queue/get-queue",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/queue/get-queue/post",
"last_updated": "2025-12-12T14:43:52.842149+00:00"
},
{
"id": "user-get-training-details",
"name": "User/Get Training Details",
"category": "Awareness Training",
"method": "POST",
"path": "/api/awareness-training/user/get-training-details",
"description": null,
"parameters": [],
"url": "https://developer.services.mimecast.com/docs/awarenesstraining/1/routes/api/awareness-training/user/get-training-details/post",
"last_updated": "2025-12-12T14:43:54.110353+00:00"
},
{
"id": "connectors",
"name": "Connectors",
"category": "Connector",
"method": "GET",
"path": "/connector/cloud-gateway/v1/connectors",
"description": "Description Fetches all existing Connectors information for an account. Fetches all existing Connectors information for an account. Please note that this endpoint only work for Directory Synchronisation - Azure Standard and Azure GCC High Connectors creation. Please note Please note that this endpoint only work for Directory Synchronisation - Azure Standard and Azure GCC High Connectors creation.",
"parameters": [
{
"name": "pageToken",
"description": "string Pagination page token"
},
{
"name": "pageSize",
"description": "integer (int32) Pagination page size"
},
{
"name": "connectors",
"description": "array expand_less List of connectors for account"
},
{