@itentialopensource/adapter-sendgrid 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +31 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +2211 -0
  7. package/CODE_OF_CONDUCT.md +43 -0
  8. package/CONTRIBUTING.md +13 -0
  9. package/ENHANCE.md +69 -0
  10. package/LICENSE +201 -0
  11. package/PROPERTIES.md +646 -0
  12. package/README.md +343 -0
  13. package/SUMMARY.md +9 -0
  14. package/SYSTEMINFO.md +20 -0
  15. package/TAB1.md +11 -0
  16. package/TAB2.md +302 -0
  17. package/TROUBLESHOOT.md +47 -0
  18. package/adapter.js +38033 -0
  19. package/adapterBase.js +1452 -0
  20. package/entities/.generic/action.json +214 -0
  21. package/entities/.generic/schema.json +28 -0
  22. package/entities/.system/action.json +50 -0
  23. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  24. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  25. package/entities/.system/schema.json +19 -0
  26. package/entities/.system/schemaTokenReq.json +53 -0
  27. package/entities/.system/schemaTokenResp.json +53 -0
  28. package/entities/APIKeyPermissions/action.json +25 -0
  29. package/entities/APIKeyPermissions/schema.json +19 -0
  30. package/entities/APIKeys/action.json +126 -0
  31. package/entities/APIKeys/schema.json +35 -0
  32. package/entities/Alerts/action.json +106 -0
  33. package/entities/Alerts/schema.json +34 -0
  34. package/entities/BlocksAPI/action.json +86 -0
  35. package/entities/BlocksAPI/schema.json +44 -0
  36. package/entities/BouncesAPI/action.json +86 -0
  37. package/entities/BouncesAPI/schema.json +55 -0
  38. package/entities/CSVUIOnly/action.json +45 -0
  39. package/entities/CSVUIOnly/schema.json +31 -0
  40. package/entities/CampaignsAPI/action.json +227 -0
  41. package/entities/CampaignsAPI/schema.json +40 -0
  42. package/entities/CancelScheduledSends/action.json +147 -0
  43. package/entities/CancelScheduledSends/schema.json +36 -0
  44. package/entities/Categories/action.json +67 -0
  45. package/entities/Categories/schema.json +76 -0
  46. package/entities/Certificates/action.json +106 -0
  47. package/entities/Certificates/schema.json +45 -0
  48. package/entities/Contacts/action.json +270 -0
  49. package/entities/Contacts/schema.json +42 -0
  50. package/entities/ContactsAPICustomFields/action.json +107 -0
  51. package/entities/ContactsAPICustomFields/schema.json +34 -0
  52. package/entities/ContactsAPILists/action.json +207 -0
  53. package/entities/ContactsAPILists/schema.json +72 -0
  54. package/entities/ContactsAPIRecipients/action.json +251 -0
  55. package/entities/ContactsAPIRecipients/schema.json +63 -0
  56. package/entities/ContactsAPISegments/action.json +127 -0
  57. package/entities/ContactsAPISegments/schema.json +57 -0
  58. package/entities/CustomFields/action.json +85 -0
  59. package/entities/CustomFields/schema.json +33 -0
  60. package/entities/DesignsAPI/action.json +188 -0
  61. package/entities/DesignsAPI/schema.json +49 -0
  62. package/entities/DomainAuthentication/action.json +248 -0
  63. package/entities/DomainAuthentication/schema.json +52 -0
  64. package/entities/EmailAddressValidation/action.json +24 -0
  65. package/entities/EmailAddressValidation/schema.json +19 -0
  66. package/entities/EmailCNAMERecords/action.json +24 -0
  67. package/entities/EmailCNAMERecords/schema.json +19 -0
  68. package/entities/IPAccessManagement/action.json +127 -0
  69. package/entities/IPAccessManagement/schema.json +35 -0
  70. package/entities/IPAddresses/action.json +108 -0
  71. package/entities/IPAddresses/schema.json +56 -0
  72. package/entities/IPPools/action.json +146 -0
  73. package/entities/IPPools/schema.json +36 -0
  74. package/entities/IPWarmup/action.json +86 -0
  75. package/entities/IPWarmup/schema.json +33 -0
  76. package/entities/InvalidEmailsAPI/action.json +86 -0
  77. package/entities/InvalidEmailsAPI/schema.json +44 -0
  78. package/entities/LinkBranding/action.json +208 -0
  79. package/entities/LinkBranding/schema.json +39 -0
  80. package/entities/Lists/action.json +147 -0
  81. package/entities/Lists/schema.json +80 -0
  82. package/entities/MailSend/action.json +24 -0
  83. package/entities/MailSend/schema.json +19 -0
  84. package/entities/MarketingCampaignsStats/action.json +172 -0
  85. package/entities/MarketingCampaignsStats/schema.json +147 -0
  86. package/entities/Query/action.json +46 -0
  87. package/entities/Query/schema.json +31 -0
  88. package/entities/ReverseDNS/action.json +106 -0
  89. package/entities/ReverseDNS/schema.json +23 -0
  90. package/entities/SegmentingContacts/action.json +126 -0
  91. package/entities/SegmentingContacts/schema.json +68 -0
  92. package/entities/SegmentingContactsV2/action.json +86 -0
  93. package/entities/SegmentingContactsV2/schema.json +66 -0
  94. package/entities/SegmentingContactsV2Beta/action.json +24 -0
  95. package/entities/SegmentingContactsV2Beta/schema.json +30 -0
  96. package/entities/SendTestEmail/action.json +24 -0
  97. package/entities/SendTestEmail/schema.json +19 -0
  98. package/entities/SenderIdentitiesAPI/action.json +126 -0
  99. package/entities/SenderIdentitiesAPI/schema.json +35 -0
  100. package/entities/SenderVerification/action.json +168 -0
  101. package/entities/SenderVerification/schema.json +26 -0
  102. package/entities/Senders/action.json +24 -0
  103. package/entities/Senders/schema.json +19 -0
  104. package/entities/SettingsEnforcedTLS/action.json +45 -0
  105. package/entities/SettingsEnforcedTLS/schema.json +20 -0
  106. package/entities/SettingsInboundParse/action.json +85 -0
  107. package/entities/SettingsInboundParse/schema.json +22 -0
  108. package/entities/SettingsMail/action.json +271 -0
  109. package/entities/SettingsMail/schema.json +31 -0
  110. package/entities/SettingsPartner/action.json +66 -0
  111. package/entities/SettingsPartner/schema.json +21 -0
  112. package/entities/SettingsTracking/action.json +189 -0
  113. package/entities/SettingsTracking/schema.json +27 -0
  114. package/entities/SingleSends/action.json +227 -0
  115. package/entities/SingleSends/schema.json +51 -0
  116. package/entities/SingleSignOnSettings/action.json +106 -0
  117. package/entities/SingleSignOnSettings/schema.json +23 -0
  118. package/entities/SingleSignOnTeammates/action.json +44 -0
  119. package/entities/SingleSignOnTeammates/schema.json +20 -0
  120. package/entities/SpamReportsAPI/action.json +86 -0
  121. package/entities/SpamReportsAPI/schema.json +44 -0
  122. package/entities/Stats/action.json +151 -0
  123. package/entities/Stats/schema.json +80 -0
  124. package/entities/SubuserMonitorSettings/action.json +85 -0
  125. package/entities/SubuserMonitorSettings/schema.json +33 -0
  126. package/entities/SubuserStatistics/action.json +88 -0
  127. package/entities/SubuserStatistics/schema.json +88 -0
  128. package/entities/SubusersAPI/action.json +126 -0
  129. package/entities/SubusersAPI/schema.json +35 -0
  130. package/entities/SuppressionsGlobalSuppressions/action.json +86 -0
  131. package/entities/SuppressionsGlobalSuppressions/schema.json +44 -0
  132. package/entities/SuppressionsSuppressions/action.json +127 -0
  133. package/entities/SuppressionsSuppressions/schema.json +35 -0
  134. package/entities/SuppressionsUnsubscribeGroups/action.json +106 -0
  135. package/entities/SuppressionsUnsubscribeGroups/schema.json +34 -0
  136. package/entities/Teammates/action.json +228 -0
  137. package/entities/Teammates/schema.json +40 -0
  138. package/entities/TransactionalTemplates/action.json +126 -0
  139. package/entities/TransactionalTemplates/schema.json +57 -0
  140. package/entities/TransactionalTemplatesVersions/action.json +105 -0
  141. package/entities/TransactionalTemplatesVersions/schema.json +45 -0
  142. package/entities/UsersAPI/action.json +189 -0
  143. package/entities/UsersAPI/schema.json +27 -0
  144. package/entities/Webhooks/action.json +148 -0
  145. package/entities/Webhooks/schema.json +58 -0
  146. package/error.json +190 -0
  147. package/metadata.json +77 -0
  148. package/package.json +81 -0
  149. package/pronghorn.json +17316 -0
  150. package/propertiesDecorators.json +14 -0
  151. package/propertiesSchema.json +1574 -0
  152. package/report/adapter-openapi.json +59750 -0
  153. package/report/adapter-openapi.yaml +43964 -0
  154. package/report/adapterInfo.json +10 -0
  155. package/report/auto-adapter-openapi.json +14137 -0
  156. package/report/creationReport.json +2750 -0
  157. package/report/sendgrid.json +48136 -0
  158. package/sampleProperties.json +257 -0
  159. package/test/integration/adapterTestBasicGet.js +83 -0
  160. package/test/integration/adapterTestConnectivity.js +118 -0
  161. package/test/integration/adapterTestIntegration.js +9099 -0
  162. package/test/unit/adapterBaseTestUnit.js +1024 -0
  163. package/test/unit/adapterTestUnit.js +8691 -0
  164. package/utils/adapterInfo.js +206 -0
  165. package/utils/addAuth.js +94 -0
  166. package/utils/artifactize.js +146 -0
  167. package/utils/basicGet.js +50 -0
  168. package/utils/checkMigrate.js +63 -0
  169. package/utils/entitiesToDB.js +179 -0
  170. package/utils/findPath.js +74 -0
  171. package/utils/methodDocumentor.js +273 -0
  172. package/utils/modify.js +152 -0
  173. package/utils/packModificationScript.js +35 -0
  174. package/utils/patches2bundledDeps.js +90 -0
  175. package/utils/pre-commit.sh +32 -0
  176. package/utils/removeHooks.js +20 -0
  177. package/utils/setup.js +33 -0
  178. package/utils/taskMover.js +309 -0
  179. package/utils/tbScript.js +239 -0
  180. package/utils/tbUtils.js +489 -0
  181. package/utils/testRunner.js +298 -0
  182. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,2750 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 16
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 6
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 21
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "^5.10.1"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 78
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 38034
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 334
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 334
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 344
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 647
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 48
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 212
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 208
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 14
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 8692
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 589
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 9100
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 343
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for MailSend entity",
117
+ "value": 1
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for CancelScheduledSends entity",
122
+ "value": 7
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for APIKeys entity",
127
+ "value": 6
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for APIKeyPermissions entity",
132
+ "value": 1
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for SettingsEnforcedTLS entity",
137
+ "value": 2
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for IPAccessManagement entity",
142
+ "value": 6
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Number of actions for Certificates entity",
147
+ "value": 5
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Number of actions for SingleSignOnSettings entity",
152
+ "value": 5
153
+ },
154
+ {
155
+ "owner": "actionJson",
156
+ "description": "Number of actions for SingleSignOnTeammates entity",
157
+ "value": 2
158
+ },
159
+ {
160
+ "owner": "actionJson",
161
+ "description": "Number of actions for SettingsMail entity",
162
+ "value": 13
163
+ },
164
+ {
165
+ "owner": "actionJson",
166
+ "description": "Number of actions for SettingsPartner entity",
167
+ "value": 3
168
+ },
169
+ {
170
+ "owner": "actionJson",
171
+ "description": "Number of actions for Teammates entity",
172
+ "value": 11
173
+ },
174
+ {
175
+ "owner": "actionJson",
176
+ "description": "Number of actions for Alerts entity",
177
+ "value": 5
178
+ },
179
+ {
180
+ "owner": "actionJson",
181
+ "description": "Number of actions for UsersAPI entity",
182
+ "value": 9
183
+ },
184
+ {
185
+ "owner": "actionJson",
186
+ "description": "Number of actions for SubusersAPI entity",
187
+ "value": 6
188
+ },
189
+ {
190
+ "owner": "actionJson",
191
+ "description": "Number of actions for SubuserMonitorSettings entity",
192
+ "value": 4
193
+ },
194
+ {
195
+ "owner": "actionJson",
196
+ "description": "Number of actions for SubuserStatistics entity",
197
+ "value": 4
198
+ },
199
+ {
200
+ "owner": "actionJson",
201
+ "description": "Number of actions for LinkBranding entity",
202
+ "value": 10
203
+ },
204
+ {
205
+ "owner": "actionJson",
206
+ "description": "Number of actions for IPWarmup entity",
207
+ "value": 4
208
+ },
209
+ {
210
+ "owner": "actionJson",
211
+ "description": "Number of actions for ReverseDNS entity",
212
+ "value": 5
213
+ },
214
+ {
215
+ "owner": "actionJson",
216
+ "description": "Number of actions for EmailAddressValidation entity",
217
+ "value": 1
218
+ },
219
+ {
220
+ "owner": "actionJson",
221
+ "description": "Number of actions for EmailCNAMERecords entity",
222
+ "value": 1
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for IPPools entity",
227
+ "value": 7
228
+ },
229
+ {
230
+ "owner": "actionJson",
231
+ "description": "Number of actions for IPAddresses entity",
232
+ "value": 5
233
+ },
234
+ {
235
+ "owner": "actionJson",
236
+ "description": "Number of actions for DomainAuthentication entity",
237
+ "value": 12
238
+ },
239
+ {
240
+ "owner": "actionJson",
241
+ "description": "Number of actions for SenderVerification entity",
242
+ "value": 8
243
+ },
244
+ {
245
+ "owner": "actionJson",
246
+ "description": "Number of actions for DesignsAPI entity",
247
+ "value": 9
248
+ },
249
+ {
250
+ "owner": "actionJson",
251
+ "description": "Number of actions for Contacts entity",
252
+ "value": 13
253
+ },
254
+ {
255
+ "owner": "actionJson",
256
+ "description": "Number of actions for SegmentingContactsV2 entity",
257
+ "value": 4
258
+ },
259
+ {
260
+ "owner": "actionJson",
261
+ "description": "Number of actions for SegmentingContactsV2Beta entity",
262
+ "value": 1
263
+ },
264
+ {
265
+ "owner": "actionJson",
266
+ "description": "Number of actions for Senders entity",
267
+ "value": 1
268
+ },
269
+ {
270
+ "owner": "actionJson",
271
+ "description": "Number of actions for Lists entity",
272
+ "value": 7
273
+ },
274
+ {
275
+ "owner": "actionJson",
276
+ "description": "Number of actions for CustomFields entity",
277
+ "value": 4
278
+ },
279
+ {
280
+ "owner": "actionJson",
281
+ "description": "Number of actions for SegmentingContacts entity",
282
+ "value": 6
283
+ },
284
+ {
285
+ "owner": "actionJson",
286
+ "description": "Number of actions for SingleSends entity",
287
+ "value": 11
288
+ },
289
+ {
290
+ "owner": "actionJson",
291
+ "description": "Number of actions for SendTestEmail entity",
292
+ "value": 1
293
+ },
294
+ {
295
+ "owner": "actionJson",
296
+ "description": "Number of actions for MarketingCampaignsStats entity",
297
+ "value": 8
298
+ },
299
+ {
300
+ "owner": "actionJson",
301
+ "description": "Number of actions for SenderIdentitiesAPI entity",
302
+ "value": 6
303
+ },
304
+ {
305
+ "owner": "actionJson",
306
+ "description": "Number of actions for ContactsAPILists entity",
307
+ "value": 10
308
+ },
309
+ {
310
+ "owner": "actionJson",
311
+ "description": "Number of actions for ContactsAPIRecipients entity",
312
+ "value": 12
313
+ },
314
+ {
315
+ "owner": "actionJson",
316
+ "description": "Number of actions for ContactsAPICustomFields entity",
317
+ "value": 5
318
+ },
319
+ {
320
+ "owner": "actionJson",
321
+ "description": "Number of actions for ContactsAPISegments entity",
322
+ "value": 6
323
+ },
324
+ {
325
+ "owner": "actionJson",
326
+ "description": "Number of actions for Categories entity",
327
+ "value": 3
328
+ },
329
+ {
330
+ "owner": "actionJson",
331
+ "description": "Number of actions for CampaignsAPI entity",
332
+ "value": 11
333
+ },
334
+ {
335
+ "owner": "actionJson",
336
+ "description": "Number of actions for TransactionalTemplates entity",
337
+ "value": 6
338
+ },
339
+ {
340
+ "owner": "actionJson",
341
+ "description": "Number of actions for TransactionalTemplatesVersions entity",
342
+ "value": 5
343
+ },
344
+ {
345
+ "owner": "actionJson",
346
+ "description": "Number of actions for Webhooks entity",
347
+ "value": 7
348
+ },
349
+ {
350
+ "owner": "actionJson",
351
+ "description": "Number of actions for SettingsInboundParse entity",
352
+ "value": 4
353
+ },
354
+ {
355
+ "owner": "actionJson",
356
+ "description": "Number of actions for Query entity",
357
+ "value": 2
358
+ },
359
+ {
360
+ "owner": "actionJson",
361
+ "description": "Number of actions for CSVUIOnly entity",
362
+ "value": 2
363
+ },
364
+ {
365
+ "owner": "actionJson",
366
+ "description": "Number of actions for SettingsTracking entity",
367
+ "value": 9
368
+ },
369
+ {
370
+ "owner": "actionJson",
371
+ "description": "Number of actions for Stats entity",
372
+ "value": 7
373
+ },
374
+ {
375
+ "owner": "actionJson",
376
+ "description": "Number of actions for BouncesAPI entity",
377
+ "value": 4
378
+ },
379
+ {
380
+ "owner": "actionJson",
381
+ "description": "Number of actions for BlocksAPI entity",
382
+ "value": 4
383
+ },
384
+ {
385
+ "owner": "actionJson",
386
+ "description": "Number of actions for SpamReportsAPI entity",
387
+ "value": 4
388
+ },
389
+ {
390
+ "owner": "actionJson",
391
+ "description": "Number of actions for SuppressionsGlobalSuppressions entity",
392
+ "value": 4
393
+ },
394
+ {
395
+ "owner": "actionJson",
396
+ "description": "Number of actions for SuppressionsUnsubscribeGroups entity",
397
+ "value": 5
398
+ },
399
+ {
400
+ "owner": "actionJson",
401
+ "description": "Number of actions for SuppressionsSuppressions entity",
402
+ "value": 6
403
+ },
404
+ {
405
+ "owner": "actionJson",
406
+ "description": "Number of actions for InvalidEmailsAPI entity",
407
+ "value": 4
408
+ },
409
+ {
410
+ "owner": "actionJson",
411
+ "description": "Total number of actions",
412
+ "value": 334
413
+ },
414
+ {
415
+ "owner": "actionJson",
416
+ "description": "Total number of entities",
417
+ "value": 59
418
+ },
419
+ {
420
+ "owner": "schemaJson",
421
+ "description": "Number of schemas for MailSend entity",
422
+ "value": 1
423
+ },
424
+ {
425
+ "owner": "schemaJson",
426
+ "description": "Number of schemas for CancelScheduledSends entity",
427
+ "value": 1
428
+ },
429
+ {
430
+ "owner": "schemaJson",
431
+ "description": "Number of schemas for APIKeys entity",
432
+ "value": 1
433
+ },
434
+ {
435
+ "owner": "schemaJson",
436
+ "description": "Number of schemas for APIKeyPermissions entity",
437
+ "value": 1
438
+ },
439
+ {
440
+ "owner": "schemaJson",
441
+ "description": "Number of schemas for SettingsEnforcedTLS entity",
442
+ "value": 1
443
+ },
444
+ {
445
+ "owner": "schemaJson",
446
+ "description": "Number of schemas for IPAccessManagement entity",
447
+ "value": 1
448
+ },
449
+ {
450
+ "owner": "schemaJson",
451
+ "description": "Number of schemas for Certificates entity",
452
+ "value": 1
453
+ },
454
+ {
455
+ "owner": "schemaJson",
456
+ "description": "Number of schemas for SingleSignOnSettings entity",
457
+ "value": 1
458
+ },
459
+ {
460
+ "owner": "schemaJson",
461
+ "description": "Number of schemas for SingleSignOnTeammates entity",
462
+ "value": 1
463
+ },
464
+ {
465
+ "owner": "schemaJson",
466
+ "description": "Number of schemas for SettingsMail entity",
467
+ "value": 1
468
+ },
469
+ {
470
+ "owner": "schemaJson",
471
+ "description": "Number of schemas for SettingsPartner entity",
472
+ "value": 1
473
+ },
474
+ {
475
+ "owner": "schemaJson",
476
+ "description": "Number of schemas for Teammates entity",
477
+ "value": 1
478
+ },
479
+ {
480
+ "owner": "schemaJson",
481
+ "description": "Number of schemas for Alerts entity",
482
+ "value": 1
483
+ },
484
+ {
485
+ "owner": "schemaJson",
486
+ "description": "Number of schemas for UsersAPI entity",
487
+ "value": 1
488
+ },
489
+ {
490
+ "owner": "schemaJson",
491
+ "description": "Number of schemas for SubusersAPI entity",
492
+ "value": 1
493
+ },
494
+ {
495
+ "owner": "schemaJson",
496
+ "description": "Number of schemas for SubuserMonitorSettings entity",
497
+ "value": 1
498
+ },
499
+ {
500
+ "owner": "schemaJson",
501
+ "description": "Number of schemas for SubuserStatistics entity",
502
+ "value": 1
503
+ },
504
+ {
505
+ "owner": "schemaJson",
506
+ "description": "Number of schemas for LinkBranding entity",
507
+ "value": 1
508
+ },
509
+ {
510
+ "owner": "schemaJson",
511
+ "description": "Number of schemas for IPWarmup entity",
512
+ "value": 1
513
+ },
514
+ {
515
+ "owner": "schemaJson",
516
+ "description": "Number of schemas for ReverseDNS entity",
517
+ "value": 1
518
+ },
519
+ {
520
+ "owner": "schemaJson",
521
+ "description": "Number of schemas for EmailAddressValidation entity",
522
+ "value": 1
523
+ },
524
+ {
525
+ "owner": "schemaJson",
526
+ "description": "Number of schemas for EmailCNAMERecords entity",
527
+ "value": 1
528
+ },
529
+ {
530
+ "owner": "schemaJson",
531
+ "description": "Number of schemas for IPPools entity",
532
+ "value": 1
533
+ },
534
+ {
535
+ "owner": "schemaJson",
536
+ "description": "Number of schemas for IPAddresses entity",
537
+ "value": 1
538
+ },
539
+ {
540
+ "owner": "schemaJson",
541
+ "description": "Number of schemas for DomainAuthentication entity",
542
+ "value": 1
543
+ },
544
+ {
545
+ "owner": "schemaJson",
546
+ "description": "Number of schemas for SenderVerification entity",
547
+ "value": 1
548
+ },
549
+ {
550
+ "owner": "schemaJson",
551
+ "description": "Number of schemas for DesignsAPI entity",
552
+ "value": 1
553
+ },
554
+ {
555
+ "owner": "schemaJson",
556
+ "description": "Number of schemas for Contacts entity",
557
+ "value": 1
558
+ },
559
+ {
560
+ "owner": "schemaJson",
561
+ "description": "Number of schemas for SegmentingContactsV2 entity",
562
+ "value": 1
563
+ },
564
+ {
565
+ "owner": "schemaJson",
566
+ "description": "Number of schemas for SegmentingContactsV2Beta entity",
567
+ "value": 1
568
+ },
569
+ {
570
+ "owner": "schemaJson",
571
+ "description": "Number of schemas for Senders entity",
572
+ "value": 1
573
+ },
574
+ {
575
+ "owner": "schemaJson",
576
+ "description": "Number of schemas for Lists entity",
577
+ "value": 1
578
+ },
579
+ {
580
+ "owner": "schemaJson",
581
+ "description": "Number of schemas for CustomFields entity",
582
+ "value": 1
583
+ },
584
+ {
585
+ "owner": "schemaJson",
586
+ "description": "Number of schemas for SegmentingContacts entity",
587
+ "value": 1
588
+ },
589
+ {
590
+ "owner": "schemaJson",
591
+ "description": "Number of schemas for SingleSends entity",
592
+ "value": 1
593
+ },
594
+ {
595
+ "owner": "schemaJson",
596
+ "description": "Number of schemas for SendTestEmail entity",
597
+ "value": 1
598
+ },
599
+ {
600
+ "owner": "schemaJson",
601
+ "description": "Number of schemas for MarketingCampaignsStats entity",
602
+ "value": 1
603
+ },
604
+ {
605
+ "owner": "schemaJson",
606
+ "description": "Number of schemas for SenderIdentitiesAPI entity",
607
+ "value": 1
608
+ },
609
+ {
610
+ "owner": "schemaJson",
611
+ "description": "Number of schemas for ContactsAPILists entity",
612
+ "value": 1
613
+ },
614
+ {
615
+ "owner": "schemaJson",
616
+ "description": "Number of schemas for ContactsAPIRecipients entity",
617
+ "value": 1
618
+ },
619
+ {
620
+ "owner": "schemaJson",
621
+ "description": "Number of schemas for ContactsAPICustomFields entity",
622
+ "value": 1
623
+ },
624
+ {
625
+ "owner": "schemaJson",
626
+ "description": "Number of schemas for ContactsAPISegments entity",
627
+ "value": 1
628
+ },
629
+ {
630
+ "owner": "schemaJson",
631
+ "description": "Number of schemas for Categories entity",
632
+ "value": 1
633
+ },
634
+ {
635
+ "owner": "schemaJson",
636
+ "description": "Number of schemas for CampaignsAPI entity",
637
+ "value": 1
638
+ },
639
+ {
640
+ "owner": "schemaJson",
641
+ "description": "Number of schemas for TransactionalTemplates entity",
642
+ "value": 1
643
+ },
644
+ {
645
+ "owner": "schemaJson",
646
+ "description": "Number of schemas for TransactionalTemplatesVersions entity",
647
+ "value": 1
648
+ },
649
+ {
650
+ "owner": "schemaJson",
651
+ "description": "Number of schemas for Webhooks entity",
652
+ "value": 1
653
+ },
654
+ {
655
+ "owner": "schemaJson",
656
+ "description": "Number of schemas for SettingsInboundParse entity",
657
+ "value": 1
658
+ },
659
+ {
660
+ "owner": "schemaJson",
661
+ "description": "Number of schemas for Query entity",
662
+ "value": 1
663
+ },
664
+ {
665
+ "owner": "schemaJson",
666
+ "description": "Number of schemas for CSVUIOnly entity",
667
+ "value": 1
668
+ },
669
+ {
670
+ "owner": "schemaJson",
671
+ "description": "Number of schemas for SettingsTracking entity",
672
+ "value": 1
673
+ },
674
+ {
675
+ "owner": "schemaJson",
676
+ "description": "Number of schemas for Stats entity",
677
+ "value": 1
678
+ },
679
+ {
680
+ "owner": "schemaJson",
681
+ "description": "Number of schemas for BouncesAPI entity",
682
+ "value": 1
683
+ },
684
+ {
685
+ "owner": "schemaJson",
686
+ "description": "Number of schemas for BlocksAPI entity",
687
+ "value": 1
688
+ },
689
+ {
690
+ "owner": "schemaJson",
691
+ "description": "Number of schemas for SpamReportsAPI entity",
692
+ "value": 1
693
+ },
694
+ {
695
+ "owner": "schemaJson",
696
+ "description": "Number of schemas for SuppressionsGlobalSuppressions entity",
697
+ "value": 1
698
+ },
699
+ {
700
+ "owner": "schemaJson",
701
+ "description": "Number of schemas for SuppressionsUnsubscribeGroups entity",
702
+ "value": 1
703
+ },
704
+ {
705
+ "owner": "schemaJson",
706
+ "description": "Number of schemas for SuppressionsSuppressions entity",
707
+ "value": 1
708
+ },
709
+ {
710
+ "owner": "schemaJson",
711
+ "description": "Number of schemas for InvalidEmailsAPI entity",
712
+ "value": 1
713
+ },
714
+ {
715
+ "owner": "schemaJson",
716
+ "description": "Total number of schemas",
717
+ "value": 59
718
+ },
719
+ {
720
+ "owner": "mockdata",
721
+ "description": "Number of mock data files for MailSend entity",
722
+ "value": 0
723
+ },
724
+ {
725
+ "owner": "mockdata",
726
+ "description": "Number of mock data files for CancelScheduledSends entity",
727
+ "value": 0
728
+ },
729
+ {
730
+ "owner": "mockdata",
731
+ "description": "Number of mock data files for APIKeys entity",
732
+ "value": 0
733
+ },
734
+ {
735
+ "owner": "mockdata",
736
+ "description": "Number of mock data files for APIKeyPermissions entity",
737
+ "value": 0
738
+ },
739
+ {
740
+ "owner": "mockdata",
741
+ "description": "Number of mock data files for SettingsEnforcedTLS entity",
742
+ "value": 0
743
+ },
744
+ {
745
+ "owner": "mockdata",
746
+ "description": "Number of mock data files for IPAccessManagement entity",
747
+ "value": 0
748
+ },
749
+ {
750
+ "owner": "mockdata",
751
+ "description": "Number of mock data files for Certificates entity",
752
+ "value": 0
753
+ },
754
+ {
755
+ "owner": "mockdata",
756
+ "description": "Number of mock data files for SingleSignOnSettings entity",
757
+ "value": 0
758
+ },
759
+ {
760
+ "owner": "mockdata",
761
+ "description": "Number of mock data files for SingleSignOnTeammates entity",
762
+ "value": 0
763
+ },
764
+ {
765
+ "owner": "mockdata",
766
+ "description": "Number of mock data files for SettingsMail entity",
767
+ "value": 0
768
+ },
769
+ {
770
+ "owner": "mockdata",
771
+ "description": "Number of mock data files for SettingsPartner entity",
772
+ "value": 0
773
+ },
774
+ {
775
+ "owner": "mockdata",
776
+ "description": "Number of mock data files for Teammates entity",
777
+ "value": 0
778
+ },
779
+ {
780
+ "owner": "mockdata",
781
+ "description": "Number of mock data files for Alerts entity",
782
+ "value": 0
783
+ },
784
+ {
785
+ "owner": "mockdata",
786
+ "description": "Number of mock data files for UsersAPI entity",
787
+ "value": 0
788
+ },
789
+ {
790
+ "owner": "mockdata",
791
+ "description": "Number of mock data files for SubusersAPI entity",
792
+ "value": 0
793
+ },
794
+ {
795
+ "owner": "mockdata",
796
+ "description": "Number of mock data files for SubuserMonitorSettings entity",
797
+ "value": 0
798
+ },
799
+ {
800
+ "owner": "mockdata",
801
+ "description": "Number of mock data files for SubuserStatistics entity",
802
+ "value": 0
803
+ },
804
+ {
805
+ "owner": "mockdata",
806
+ "description": "Number of mock data files for LinkBranding entity",
807
+ "value": 0
808
+ },
809
+ {
810
+ "owner": "mockdata",
811
+ "description": "Number of mock data files for IPWarmup entity",
812
+ "value": 0
813
+ },
814
+ {
815
+ "owner": "mockdata",
816
+ "description": "Number of mock data files for ReverseDNS entity",
817
+ "value": 0
818
+ },
819
+ {
820
+ "owner": "mockdata",
821
+ "description": "Number of mock data files for EmailAddressValidation entity",
822
+ "value": 0
823
+ },
824
+ {
825
+ "owner": "mockdata",
826
+ "description": "Number of mock data files for EmailCNAMERecords entity",
827
+ "value": 0
828
+ },
829
+ {
830
+ "owner": "mockdata",
831
+ "description": "Number of mock data files for IPPools entity",
832
+ "value": 0
833
+ },
834
+ {
835
+ "owner": "mockdata",
836
+ "description": "Number of mock data files for IPAddresses entity",
837
+ "value": 0
838
+ },
839
+ {
840
+ "owner": "mockdata",
841
+ "description": "Number of mock data files for DomainAuthentication entity",
842
+ "value": 0
843
+ },
844
+ {
845
+ "owner": "mockdata",
846
+ "description": "Number of mock data files for SenderVerification entity",
847
+ "value": 0
848
+ },
849
+ {
850
+ "owner": "mockdata",
851
+ "description": "Number of mock data files for DesignsAPI entity",
852
+ "value": 0
853
+ },
854
+ {
855
+ "owner": "mockdata",
856
+ "description": "Number of mock data files for Contacts entity",
857
+ "value": 0
858
+ },
859
+ {
860
+ "owner": "mockdata",
861
+ "description": "Number of mock data files for SegmentingContactsV2 entity",
862
+ "value": 0
863
+ },
864
+ {
865
+ "owner": "mockdata",
866
+ "description": "Number of mock data files for SegmentingContactsV2Beta entity",
867
+ "value": 0
868
+ },
869
+ {
870
+ "owner": "mockdata",
871
+ "description": "Number of mock data files for Senders entity",
872
+ "value": 0
873
+ },
874
+ {
875
+ "owner": "mockdata",
876
+ "description": "Number of mock data files for Lists entity",
877
+ "value": 0
878
+ },
879
+ {
880
+ "owner": "mockdata",
881
+ "description": "Number of mock data files for CustomFields entity",
882
+ "value": 0
883
+ },
884
+ {
885
+ "owner": "mockdata",
886
+ "description": "Number of mock data files for SegmentingContacts entity",
887
+ "value": 0
888
+ },
889
+ {
890
+ "owner": "mockdata",
891
+ "description": "Number of mock data files for SingleSends entity",
892
+ "value": 0
893
+ },
894
+ {
895
+ "owner": "mockdata",
896
+ "description": "Number of mock data files for SendTestEmail entity",
897
+ "value": 0
898
+ },
899
+ {
900
+ "owner": "mockdata",
901
+ "description": "Number of mock data files for MarketingCampaignsStats entity",
902
+ "value": 0
903
+ },
904
+ {
905
+ "owner": "mockdata",
906
+ "description": "Number of mock data files for SenderIdentitiesAPI entity",
907
+ "value": 0
908
+ },
909
+ {
910
+ "owner": "mockdata",
911
+ "description": "Number of mock data files for ContactsAPILists entity",
912
+ "value": 0
913
+ },
914
+ {
915
+ "owner": "mockdata",
916
+ "description": "Number of mock data files for ContactsAPIRecipients entity",
917
+ "value": 0
918
+ },
919
+ {
920
+ "owner": "mockdata",
921
+ "description": "Number of mock data files for ContactsAPICustomFields entity",
922
+ "value": 0
923
+ },
924
+ {
925
+ "owner": "mockdata",
926
+ "description": "Number of mock data files for ContactsAPISegments entity",
927
+ "value": 0
928
+ },
929
+ {
930
+ "owner": "mockdata",
931
+ "description": "Number of mock data files for Categories entity",
932
+ "value": 0
933
+ },
934
+ {
935
+ "owner": "mockdata",
936
+ "description": "Number of mock data files for CampaignsAPI entity",
937
+ "value": 0
938
+ },
939
+ {
940
+ "owner": "mockdata",
941
+ "description": "Number of mock data files for TransactionalTemplates entity",
942
+ "value": 0
943
+ },
944
+ {
945
+ "owner": "mockdata",
946
+ "description": "Number of mock data files for TransactionalTemplatesVersions entity",
947
+ "value": 0
948
+ },
949
+ {
950
+ "owner": "mockdata",
951
+ "description": "Number of mock data files for Webhooks entity",
952
+ "value": 0
953
+ },
954
+ {
955
+ "owner": "mockdata",
956
+ "description": "Number of mock data files for SettingsInboundParse entity",
957
+ "value": 0
958
+ },
959
+ {
960
+ "owner": "mockdata",
961
+ "description": "Number of mock data files for Query entity",
962
+ "value": 0
963
+ },
964
+ {
965
+ "owner": "mockdata",
966
+ "description": "Number of mock data files for CSVUIOnly entity",
967
+ "value": 0
968
+ },
969
+ {
970
+ "owner": "mockdata",
971
+ "description": "Number of mock data files for SettingsTracking entity",
972
+ "value": 0
973
+ },
974
+ {
975
+ "owner": "mockdata",
976
+ "description": "Number of mock data files for Stats entity",
977
+ "value": 0
978
+ },
979
+ {
980
+ "owner": "mockdata",
981
+ "description": "Number of mock data files for BouncesAPI entity",
982
+ "value": 0
983
+ },
984
+ {
985
+ "owner": "mockdata",
986
+ "description": "Number of mock data files for BlocksAPI entity",
987
+ "value": 0
988
+ },
989
+ {
990
+ "owner": "mockdata",
991
+ "description": "Number of mock data files for SpamReportsAPI entity",
992
+ "value": 0
993
+ },
994
+ {
995
+ "owner": "mockdata",
996
+ "description": "Number of mock data files for SuppressionsGlobalSuppressions entity",
997
+ "value": 0
998
+ },
999
+ {
1000
+ "owner": "mockdata",
1001
+ "description": "Number of mock data files for SuppressionsUnsubscribeGroups entity",
1002
+ "value": 0
1003
+ },
1004
+ {
1005
+ "owner": "mockdata",
1006
+ "description": "Number of mock data files for SuppressionsSuppressions entity",
1007
+ "value": 0
1008
+ },
1009
+ {
1010
+ "owner": "mockdata",
1011
+ "description": "Number of mock data files for InvalidEmailsAPI entity",
1012
+ "value": 0
1013
+ },
1014
+ {
1015
+ "owner": "mockdata",
1016
+ "description": "Total number of mock data files",
1017
+ "value": 0
1018
+ },
1019
+ {
1020
+ "owner": "actionJson",
1021
+ "description": "Number of actions for .system entity",
1022
+ "value": 2
1023
+ },
1024
+ {
1025
+ "owner": "schemaJson",
1026
+ "description": "Number of schemas for .system entity",
1027
+ "value": 3
1028
+ },
1029
+ {
1030
+ "owner": "mockdata",
1031
+ "description": "Number of mock data files for .system entity",
1032
+ "value": 2
1033
+ },
1034
+ {
1035
+ "owner": "System",
1036
+ "description": "System entity files",
1037
+ "value": 6
1038
+ },
1039
+ {
1040
+ "owner": "usecases",
1041
+ "description": "Number of workflows",
1042
+ "value": 0
1043
+ },
1044
+ {
1045
+ "owner": "staticFile",
1046
+ "description": "Number of lines of code in adapterBase.js",
1047
+ "value": 1453
1048
+ },
1049
+ {
1050
+ "owner": "staticFile",
1051
+ "description": "Number of static files added",
1052
+ "value": 37
1053
+ },
1054
+ {
1055
+ "owner": "Overall",
1056
+ "description": "Total lines of Code",
1057
+ "value": 57279
1058
+ },
1059
+ {
1060
+ "owner": "Overall",
1061
+ "description": "Total Tests",
1062
+ "value": 932
1063
+ },
1064
+ {
1065
+ "owner": "Overall",
1066
+ "description": "Total Files",
1067
+ "value": 170
1068
+ }
1069
+ ],
1070
+ "warnings": [],
1071
+ "apiParsingReport": {
1072
+ "no_mockdata": [
1073
+ {
1074
+ "fnName": "pOSTMailSend",
1075
+ "method": "post",
1076
+ "path": "/mail/send"
1077
+ },
1078
+ {
1079
+ "fnName": "pOSTMailBatch",
1080
+ "method": "post",
1081
+ "path": "/mail/batch"
1082
+ },
1083
+ {
1084
+ "fnName": "pOSTUserScheduledSends",
1085
+ "method": "post",
1086
+ "path": "/user/scheduled_sends"
1087
+ },
1088
+ {
1089
+ "fnName": "gETUserScheduledSends",
1090
+ "method": "get",
1091
+ "path": "/user/scheduled_sends"
1092
+ },
1093
+ {
1094
+ "fnName": "gETMailBatchBatchId",
1095
+ "method": "get",
1096
+ "path": "/mail/batch/{batch_id}"
1097
+ },
1098
+ {
1099
+ "fnName": "gETUserScheduledSendsBatchId",
1100
+ "method": "get",
1101
+ "path": "/user/scheduled_sends/{batch_id}"
1102
+ },
1103
+ {
1104
+ "fnName": "pATCHUserScheduledSendsBatchId",
1105
+ "method": "patch",
1106
+ "path": "/user/scheduled_sends/{batch_id}"
1107
+ },
1108
+ {
1109
+ "fnName": "dELETEUserScheduledSendsBatchId",
1110
+ "method": "delete",
1111
+ "path": "/user/scheduled_sends/{batch_id}"
1112
+ },
1113
+ {
1114
+ "fnName": "createApiKeys",
1115
+ "method": "post",
1116
+ "path": "/api_keys"
1117
+ },
1118
+ {
1119
+ "fnName": "gETApiKeys",
1120
+ "method": "get",
1121
+ "path": "/api_keys"
1122
+ },
1123
+ {
1124
+ "fnName": "gETApiKeysApiKeyId",
1125
+ "method": "get",
1126
+ "path": "/api_keys/{api_key_id}"
1127
+ },
1128
+ {
1129
+ "fnName": "pATCHApiKeysApiKeyId",
1130
+ "method": "patch",
1131
+ "path": "/api_keys/{api_key_id}"
1132
+ },
1133
+ {
1134
+ "fnName": "pUTApiKeysApiKeyId",
1135
+ "method": "put",
1136
+ "path": "/api_keys/{api_key_id}"
1137
+ },
1138
+ {
1139
+ "fnName": "dELETEApiKeysApiKeyId",
1140
+ "method": "delete",
1141
+ "path": "/api_keys/{api_key_id}"
1142
+ },
1143
+ {
1144
+ "fnName": "gETScopes",
1145
+ "method": "get",
1146
+ "path": "/scopes"
1147
+ },
1148
+ {
1149
+ "fnName": "gETUserSettingsEnforcedTls",
1150
+ "method": "get",
1151
+ "path": "/user/settings/enforced_tls"
1152
+ },
1153
+ {
1154
+ "fnName": "pATCHUserSettingsEnforcedTls",
1155
+ "method": "patch",
1156
+ "path": "/user/settings/enforced_tls"
1157
+ },
1158
+ {
1159
+ "fnName": "pOSTAccessSettingsWhitelist",
1160
+ "method": "post",
1161
+ "path": "/access_settings/whitelist"
1162
+ },
1163
+ {
1164
+ "fnName": "gETAccessSettingsWhitelist",
1165
+ "method": "get",
1166
+ "path": "/access_settings/whitelist"
1167
+ },
1168
+ {
1169
+ "fnName": "dELETEAccessSettingsWhitelist",
1170
+ "method": "delete",
1171
+ "path": "/access_settings/whitelist"
1172
+ },
1173
+ {
1174
+ "fnName": "gETAccessSettingsActivity",
1175
+ "method": "get",
1176
+ "path": "/access_settings/activity"
1177
+ },
1178
+ {
1179
+ "fnName": "gETAccessSettingsWhitelistRuleId",
1180
+ "method": "get",
1181
+ "path": "/access_settings/whitelist/{rule_id}"
1182
+ },
1183
+ {
1184
+ "fnName": "dELETEAccessSettingsWhitelistRuleId",
1185
+ "method": "delete",
1186
+ "path": "/access_settings/whitelist/{rule_id}"
1187
+ },
1188
+ {
1189
+ "fnName": "pOSTSsoCertificates",
1190
+ "method": "post",
1191
+ "path": "/sso/certificates"
1192
+ },
1193
+ {
1194
+ "fnName": "gETSsoIntegrationsIntegrationIdCertificates",
1195
+ "method": "get",
1196
+ "path": "/sso/integrations/{integration_id}/certificates"
1197
+ },
1198
+ {
1199
+ "fnName": "gETSsoCertificatesCertId",
1200
+ "method": "get",
1201
+ "path": "/sso/certificates/{cert_id}"
1202
+ },
1203
+ {
1204
+ "fnName": "pATCHSsoCertificatesCertId",
1205
+ "method": "patch",
1206
+ "path": "/sso/certificates/{cert_id}"
1207
+ },
1208
+ {
1209
+ "fnName": "dELETESsoCertificatesCertId",
1210
+ "method": "delete",
1211
+ "path": "/sso/certificates/{cert_id}"
1212
+ },
1213
+ {
1214
+ "fnName": "pOSTSsoIntegrations",
1215
+ "method": "post",
1216
+ "path": "/sso/integrations"
1217
+ },
1218
+ {
1219
+ "fnName": "gETSsoIntegrations",
1220
+ "method": "get",
1221
+ "path": "/sso/integrations"
1222
+ },
1223
+ {
1224
+ "fnName": "gETSsoIntegrationsId",
1225
+ "method": "get",
1226
+ "path": "/sso/integrations/{id}"
1227
+ },
1228
+ {
1229
+ "fnName": "pATCHSsoIntegrationsId",
1230
+ "method": "patch",
1231
+ "path": "/sso/integrations/{id}"
1232
+ },
1233
+ {
1234
+ "fnName": "dELETESsoIntegrationsId",
1235
+ "method": "delete",
1236
+ "path": "/sso/integrations/{id}"
1237
+ },
1238
+ {
1239
+ "fnName": "pOSTSsoTeammates",
1240
+ "method": "post",
1241
+ "path": "/sso/teammates"
1242
+ },
1243
+ {
1244
+ "fnName": "pATCHSsoTeammatesUsername",
1245
+ "method": "patch",
1246
+ "path": "/sso/teammates/{username}"
1247
+ },
1248
+ {
1249
+ "fnName": "gETMailSettings",
1250
+ "method": "get",
1251
+ "path": "/mail_settings"
1252
+ },
1253
+ {
1254
+ "fnName": "pATCHMailSettingsAddressWhitelist",
1255
+ "method": "patch",
1256
+ "path": "/mail_settings/address_whitelist"
1257
+ },
1258
+ {
1259
+ "fnName": "gETMailSettingsAddressWhitelist",
1260
+ "method": "get",
1261
+ "path": "/mail_settings/address_whitelist"
1262
+ },
1263
+ {
1264
+ "fnName": "pATCHMailSettingsFooter",
1265
+ "method": "patch",
1266
+ "path": "/mail_settings/footer"
1267
+ },
1268
+ {
1269
+ "fnName": "gETMailSettingsFooter",
1270
+ "method": "get",
1271
+ "path": "/mail_settings/footer"
1272
+ },
1273
+ {
1274
+ "fnName": "pATCHMailSettingsForwardSpam",
1275
+ "method": "patch",
1276
+ "path": "/mail_settings/forward_spam"
1277
+ },
1278
+ {
1279
+ "fnName": "gETMailSettingsForwardSpam",
1280
+ "method": "get",
1281
+ "path": "/mail_settings/forward_spam"
1282
+ },
1283
+ {
1284
+ "fnName": "pATCHMailSettingsTemplate",
1285
+ "method": "patch",
1286
+ "path": "/mail_settings/template"
1287
+ },
1288
+ {
1289
+ "fnName": "gETMailSettingsTemplate",
1290
+ "method": "get",
1291
+ "path": "/mail_settings/template"
1292
+ },
1293
+ {
1294
+ "fnName": "pATCHMailSettingsBouncePurge",
1295
+ "method": "patch",
1296
+ "path": "/mail_settings/bounce_purge"
1297
+ },
1298
+ {
1299
+ "fnName": "gETMailSettingsBouncePurge",
1300
+ "method": "get",
1301
+ "path": "/mail_settings/bounce_purge"
1302
+ },
1303
+ {
1304
+ "fnName": "pATCHMailSettingsForwardBounce",
1305
+ "method": "patch",
1306
+ "path": "/mail_settings/forward_bounce"
1307
+ },
1308
+ {
1309
+ "fnName": "gETMailSettingsForwardBounce",
1310
+ "method": "get",
1311
+ "path": "/mail_settings/forward_bounce"
1312
+ },
1313
+ {
1314
+ "fnName": "pATCHPartnerSettingsNewRelic",
1315
+ "method": "patch",
1316
+ "path": "/partner_settings/new_relic"
1317
+ },
1318
+ {
1319
+ "fnName": "gETPartnerSettingsNewRelic",
1320
+ "method": "get",
1321
+ "path": "/partner_settings/new_relic"
1322
+ },
1323
+ {
1324
+ "fnName": "gETPartnerSettings",
1325
+ "method": "get",
1326
+ "path": "/partner_settings"
1327
+ },
1328
+ {
1329
+ "fnName": "pOSTV3Teammates",
1330
+ "method": "post",
1331
+ "path": "/teammates"
1332
+ },
1333
+ {
1334
+ "fnName": "gETV3Teammates",
1335
+ "method": "get",
1336
+ "path": "/teammates"
1337
+ },
1338
+ {
1339
+ "fnName": "pOSTV3TeammatesPendingTokenResend",
1340
+ "method": "post",
1341
+ "path": "/teammates/pending/{token}/resend"
1342
+ },
1343
+ {
1344
+ "fnName": "gETV3ScopesRequests",
1345
+ "method": "get",
1346
+ "path": "/scopes/requests"
1347
+ },
1348
+ {
1349
+ "fnName": "gETV3TeammatesPending",
1350
+ "method": "get",
1351
+ "path": "/teammates/pending"
1352
+ },
1353
+ {
1354
+ "fnName": "gETV3TeammatesUsername",
1355
+ "method": "get",
1356
+ "path": "/teammates/{username}"
1357
+ },
1358
+ {
1359
+ "fnName": "pATCHV3TeammatesUsername",
1360
+ "method": "patch",
1361
+ "path": "/teammates/{username}"
1362
+ },
1363
+ {
1364
+ "fnName": "dELETEV3TeammatesUsername",
1365
+ "method": "delete",
1366
+ "path": "/teammates/{username}"
1367
+ },
1368
+ {
1369
+ "fnName": "pATCHV3ScopesRequestsApproveId",
1370
+ "method": "patch",
1371
+ "path": "/scopes/requests/{request_id}/approve"
1372
+ },
1373
+ {
1374
+ "fnName": "dELETEV3ScopesRequestsRequestId",
1375
+ "method": "delete",
1376
+ "path": "/scopes/requests/{request_id}"
1377
+ },
1378
+ {
1379
+ "fnName": "dELETEV3TeammatesPendingToken",
1380
+ "method": "delete",
1381
+ "path": "/teammates/pending/{token}"
1382
+ },
1383
+ {
1384
+ "fnName": "pOSTAlerts",
1385
+ "method": "post",
1386
+ "path": "/alerts"
1387
+ },
1388
+ {
1389
+ "fnName": "gETAlerts",
1390
+ "method": "get",
1391
+ "path": "/alerts"
1392
+ },
1393
+ {
1394
+ "fnName": "gETAlertsAlertId",
1395
+ "method": "get",
1396
+ "path": "/alerts/{alert_id}"
1397
+ },
1398
+ {
1399
+ "fnName": "dELETEAlertsAlertId",
1400
+ "method": "delete",
1401
+ "path": "/alerts/{alert_id}"
1402
+ },
1403
+ {
1404
+ "fnName": "pATCHAlertsAlertId",
1405
+ "method": "patch",
1406
+ "path": "/alerts/{alert_id}"
1407
+ },
1408
+ {
1409
+ "fnName": "gETUserProfile",
1410
+ "method": "get",
1411
+ "path": "/user/profile"
1412
+ },
1413
+ {
1414
+ "fnName": "pATCHUserProfile",
1415
+ "method": "patch",
1416
+ "path": "/user/profile"
1417
+ },
1418
+ {
1419
+ "fnName": "gETUserAccount",
1420
+ "method": "get",
1421
+ "path": "/user/account"
1422
+ },
1423
+ {
1424
+ "fnName": "gETUserEmail",
1425
+ "method": "get",
1426
+ "path": "/user/email"
1427
+ },
1428
+ {
1429
+ "fnName": "pUTUserEmail",
1430
+ "method": "put",
1431
+ "path": "/user/email"
1432
+ },
1433
+ {
1434
+ "fnName": "gETUserUsername",
1435
+ "method": "get",
1436
+ "path": "/user/username"
1437
+ },
1438
+ {
1439
+ "fnName": "pUTUserUsername",
1440
+ "method": "put",
1441
+ "path": "/user/username"
1442
+ },
1443
+ {
1444
+ "fnName": "gETUserCredits",
1445
+ "method": "get",
1446
+ "path": "/user/credits"
1447
+ },
1448
+ {
1449
+ "fnName": "pUTUserPassword",
1450
+ "method": "put",
1451
+ "path": "/user/password"
1452
+ },
1453
+ {
1454
+ "fnName": "gETSubusers",
1455
+ "method": "get",
1456
+ "path": "/subusers"
1457
+ },
1458
+ {
1459
+ "fnName": "pOSTSubusers",
1460
+ "method": "post",
1461
+ "path": "/subusers"
1462
+ },
1463
+ {
1464
+ "fnName": "pATCHSubusersSubuserName",
1465
+ "method": "patch",
1466
+ "path": "/subusers/{subuser_name}"
1467
+ },
1468
+ {
1469
+ "fnName": "dELETESubusersSubuserName",
1470
+ "method": "delete",
1471
+ "path": "/subusers/{subuser_name}"
1472
+ },
1473
+ {
1474
+ "fnName": "gETSubusersReputations",
1475
+ "method": "get",
1476
+ "path": "/subusers/reputations"
1477
+ },
1478
+ {
1479
+ "fnName": "pUTSubusersSubuserNameIps",
1480
+ "method": "put",
1481
+ "path": "/subusers/{subuser_name}/ips"
1482
+ },
1483
+ {
1484
+ "fnName": "gETSubusersSubuserNameMonitor",
1485
+ "method": "get",
1486
+ "path": "/subusers/{subuser_name}/monitor"
1487
+ },
1488
+ {
1489
+ "fnName": "pOSTSubusersSubuserNameMonitor",
1490
+ "method": "post",
1491
+ "path": "/subusers/{subuser_name}/monitor"
1492
+ },
1493
+ {
1494
+ "fnName": "pUTSubusersSubuserNameMonitor",
1495
+ "method": "put",
1496
+ "path": "/subusers/{subuser_name}/monitor"
1497
+ },
1498
+ {
1499
+ "fnName": "dELETESubusersSubuserNameMonitor",
1500
+ "method": "delete",
1501
+ "path": "/subusers/{subuser_name}/monitor"
1502
+ },
1503
+ {
1504
+ "fnName": "gETSubusersSubuserNameStatsMonthly",
1505
+ "method": "get",
1506
+ "path": "/subusers/{subuser_name}/stats/monthly"
1507
+ },
1508
+ {
1509
+ "fnName": "gETSubusersStatsMonthly",
1510
+ "method": "get",
1511
+ "path": "/subusers/stats/monthly"
1512
+ },
1513
+ {
1514
+ "fnName": "gETSubusersStatsSums",
1515
+ "method": "get",
1516
+ "path": "/subusers/stats/sums"
1517
+ },
1518
+ {
1519
+ "fnName": "gETSubusersStats",
1520
+ "method": "get",
1521
+ "path": "/subusers/stats"
1522
+ },
1523
+ {
1524
+ "fnName": "pOSTWhitelabelLinks",
1525
+ "method": "post",
1526
+ "path": "/whitelabel/links"
1527
+ },
1528
+ {
1529
+ "fnName": "gETWhitelabelLinks",
1530
+ "method": "get",
1531
+ "path": "/whitelabel/links"
1532
+ },
1533
+ {
1534
+ "fnName": "pOSTWhitelabelLinksIdValidate",
1535
+ "method": "post",
1536
+ "path": "/whitelabel/links/{id}/validate"
1537
+ },
1538
+ {
1539
+ "fnName": "pOSTWhitelabelLinksLinkIdSubuser",
1540
+ "method": "post",
1541
+ "path": "/whitelabel/links/{link_id}/subuser"
1542
+ },
1543
+ {
1544
+ "fnName": "gETWhitelabelLinksId",
1545
+ "method": "get",
1546
+ "path": "/whitelabel/links/{id}"
1547
+ },
1548
+ {
1549
+ "fnName": "pATCHWhitelabelLinksId",
1550
+ "method": "patch",
1551
+ "path": "/whitelabel/links/{id}"
1552
+ },
1553
+ {
1554
+ "fnName": "dELETEWhitelabelLinksId",
1555
+ "method": "delete",
1556
+ "path": "/whitelabel/links/{id}"
1557
+ },
1558
+ {
1559
+ "fnName": "gETWhitelabelLinksDefault",
1560
+ "method": "get",
1561
+ "path": "/whitelabel/links/default"
1562
+ },
1563
+ {
1564
+ "fnName": "gETWhitelabelLinksSubuser",
1565
+ "method": "get",
1566
+ "path": "/whitelabel/links/subuser"
1567
+ },
1568
+ {
1569
+ "fnName": "dELETEWhitelabelLinksSubuser",
1570
+ "method": "delete",
1571
+ "path": "/whitelabel/links/subuser"
1572
+ },
1573
+ {
1574
+ "fnName": "pOSTIpsWarmup",
1575
+ "method": "post",
1576
+ "path": "/ips/warmup"
1577
+ },
1578
+ {
1579
+ "fnName": "gETIpsWarmup",
1580
+ "method": "get",
1581
+ "path": "/ips/warmup"
1582
+ },
1583
+ {
1584
+ "fnName": "gETIpsWarmupIpAddress",
1585
+ "method": "get",
1586
+ "path": "/ips/warmup/{ip_address}"
1587
+ },
1588
+ {
1589
+ "fnName": "dELETEIpsWarmupIpAddress",
1590
+ "method": "delete",
1591
+ "path": "/ips/warmup/{ip_address}"
1592
+ },
1593
+ {
1594
+ "fnName": "pOSTWhitelabelIps",
1595
+ "method": "post",
1596
+ "path": "/whitelabel/ips"
1597
+ },
1598
+ {
1599
+ "fnName": "gETWhitelabelIps",
1600
+ "method": "get",
1601
+ "path": "/whitelabel/ips"
1602
+ },
1603
+ {
1604
+ "fnName": "pOSTWhitelabelIpsIdValidate",
1605
+ "method": "post",
1606
+ "path": "/whitelabel/ips/{id}/validate"
1607
+ },
1608
+ {
1609
+ "fnName": "gETWhitelabelIpsId",
1610
+ "method": "get",
1611
+ "path": "/whitelabel/ips/{id}"
1612
+ },
1613
+ {
1614
+ "fnName": "dELETEWhitelabelIpsId",
1615
+ "method": "delete",
1616
+ "path": "/whitelabel/ips/{id}"
1617
+ },
1618
+ {
1619
+ "fnName": "pOSTValidationsEmail",
1620
+ "method": "post",
1621
+ "path": "/validations/email"
1622
+ },
1623
+ {
1624
+ "fnName": "pOSTWhitelabelDnsEmail",
1625
+ "method": "post",
1626
+ "path": "/whitelabel/dns/email"
1627
+ },
1628
+ {
1629
+ "fnName": "pOSTIpsPools",
1630
+ "method": "post",
1631
+ "path": "/ips/pools"
1632
+ },
1633
+ {
1634
+ "fnName": "gETIpsPools",
1635
+ "method": "get",
1636
+ "path": "/ips/pools"
1637
+ },
1638
+ {
1639
+ "fnName": "pOSTIpsPoolsPoolNameIps",
1640
+ "method": "post",
1641
+ "path": "/ips/pools/{pool_name}/ips"
1642
+ },
1643
+ {
1644
+ "fnName": "gETIpsPoolsPoolName",
1645
+ "method": "get",
1646
+ "path": "/ips/pools/{pool_name}"
1647
+ },
1648
+ {
1649
+ "fnName": "pUTIpsPoolsPoolName",
1650
+ "method": "put",
1651
+ "path": "/ips/pools/{pool_name}"
1652
+ },
1653
+ {
1654
+ "fnName": "dELETEIpsPoolsPoolName",
1655
+ "method": "delete",
1656
+ "path": "/ips/pools/{pool_name}"
1657
+ },
1658
+ {
1659
+ "fnName": "dELETEIpsPoolsPoolNameIpsIp",
1660
+ "method": "delete",
1661
+ "path": "/ips/pools/{pool_name}/ips/{ip}"
1662
+ },
1663
+ {
1664
+ "fnName": "pOSTIps",
1665
+ "method": "post",
1666
+ "path": "/ips"
1667
+ },
1668
+ {
1669
+ "fnName": "gETIps",
1670
+ "method": "get",
1671
+ "path": "/ips"
1672
+ },
1673
+ {
1674
+ "fnName": "gETIpsRemaining",
1675
+ "method": "get",
1676
+ "path": "/ips/remaining"
1677
+ },
1678
+ {
1679
+ "fnName": "gETIpsAssigned",
1680
+ "method": "get",
1681
+ "path": "/ips/assigned"
1682
+ },
1683
+ {
1684
+ "fnName": "gETIpsIpAddress",
1685
+ "method": "get",
1686
+ "path": "/ips/{ip_address}"
1687
+ },
1688
+ {
1689
+ "fnName": "gETWhitelabelDomains",
1690
+ "method": "get",
1691
+ "path": "/whitelabel/domains"
1692
+ },
1693
+ {
1694
+ "fnName": "pOSTWhitelabelDomains",
1695
+ "method": "post",
1696
+ "path": "/whitelabel/domains"
1697
+ },
1698
+ {
1699
+ "fnName": "gETWhitelabelDomainsDomainId",
1700
+ "method": "get",
1701
+ "path": "/whitelabel/domains/{domain_id}"
1702
+ },
1703
+ {
1704
+ "fnName": "pATCHWhitelabelDomainsDomainId",
1705
+ "method": "patch",
1706
+ "path": "/whitelabel/domains/{domain_id}"
1707
+ },
1708
+ {
1709
+ "fnName": "dELETEWhitelabelDomainsDomainId",
1710
+ "method": "delete",
1711
+ "path": "/whitelabel/domains/{domain_id}"
1712
+ },
1713
+ {
1714
+ "fnName": "gETWhitelabelDomainsDefault",
1715
+ "method": "get",
1716
+ "path": "/whitelabel/domains/default"
1717
+ },
1718
+ {
1719
+ "fnName": "pOSTWhitelabelDomainsIdIps",
1720
+ "method": "post",
1721
+ "path": "/whitelabel/domains/{id}/ips"
1722
+ },
1723
+ {
1724
+ "fnName": "dELETEWhitelabelDomainsIdIpsIp",
1725
+ "method": "delete",
1726
+ "path": "/whitelabel/domains/{id}/ips/{ip}"
1727
+ },
1728
+ {
1729
+ "fnName": "pOSTWhitelabelDomainsIdValidate",
1730
+ "method": "post",
1731
+ "path": "/whitelabel/domains/{id}/validate"
1732
+ },
1733
+ {
1734
+ "fnName": "gETWhitelabelDomainsSubuser",
1735
+ "method": "get",
1736
+ "path": "/whitelabel/domains/subuser"
1737
+ },
1738
+ {
1739
+ "fnName": "dELETEWhitelabelDomainsSubuser",
1740
+ "method": "delete",
1741
+ "path": "/whitelabel/domains/subuser"
1742
+ },
1743
+ {
1744
+ "fnName": "pOSTWhitelabelDomainsDomainIdSubuser",
1745
+ "method": "post",
1746
+ "path": "/whitelabel/domains/{domain_id}/subuser"
1747
+ },
1748
+ {
1749
+ "fnName": "gETVerifiedSendersDomains",
1750
+ "method": "get",
1751
+ "path": "/verified_senders/domains"
1752
+ },
1753
+ {
1754
+ "fnName": "gETVerifiedSendersStepsCompleted",
1755
+ "method": "get",
1756
+ "path": "/verified_senders/steps_completed"
1757
+ },
1758
+ {
1759
+ "fnName": "pOSTVerifiedSenders",
1760
+ "method": "post",
1761
+ "path": "/verified_senders"
1762
+ },
1763
+ {
1764
+ "fnName": "gETVerifiedSenders",
1765
+ "method": "get",
1766
+ "path": "/verified_senders"
1767
+ },
1768
+ {
1769
+ "fnName": "gETVerifiedSendersVerifyToken",
1770
+ "method": "get",
1771
+ "path": "/verified_senders/verify/{token}"
1772
+ },
1773
+ {
1774
+ "fnName": "pATCHVerifiedSendersId",
1775
+ "method": "patch",
1776
+ "path": "/verified_senders/{id}"
1777
+ },
1778
+ {
1779
+ "fnName": "dELETEVerifiedSendersId",
1780
+ "method": "delete",
1781
+ "path": "/verified_senders/{id}"
1782
+ },
1783
+ {
1784
+ "fnName": "pOSTVerifiedSendersResendId",
1785
+ "method": "post",
1786
+ "path": "/verified_senders/resend/{id}"
1787
+ },
1788
+ {
1789
+ "fnName": "pOSTDesignDup",
1790
+ "method": "post",
1791
+ "path": "/designs/{id}"
1792
+ },
1793
+ {
1794
+ "fnName": "gETDesign",
1795
+ "method": "get",
1796
+ "path": "/designs/{id}"
1797
+ },
1798
+ {
1799
+ "fnName": "pUTDesign",
1800
+ "method": "patch",
1801
+ "path": "/designs/{id}"
1802
+ },
1803
+ {
1804
+ "fnName": "dELETEDesign",
1805
+ "method": "delete",
1806
+ "path": "/designs/{id}"
1807
+ },
1808
+ {
1809
+ "fnName": "pOSTDesign",
1810
+ "method": "post",
1811
+ "path": "/designs"
1812
+ },
1813
+ {
1814
+ "fnName": "lISTDesigns",
1815
+ "method": "get",
1816
+ "path": "/designs"
1817
+ },
1818
+ {
1819
+ "fnName": "pOSTSendgridPreBuiltDesign",
1820
+ "method": "post",
1821
+ "path": "/designs/pre-builts/{id}"
1822
+ },
1823
+ {
1824
+ "fnName": "gETSendgridPreBuiltDesign",
1825
+ "method": "get",
1826
+ "path": "/designs/pre-builts/{id}"
1827
+ },
1828
+ {
1829
+ "fnName": "lISTSendgridPreBuiltDesigns",
1830
+ "method": "get",
1831
+ "path": "/designs/pre-builts"
1832
+ },
1833
+ {
1834
+ "fnName": "pUTMcContacts",
1835
+ "method": "put",
1836
+ "path": "/marketing/contacts"
1837
+ },
1838
+ {
1839
+ "fnName": "dELETEMcContacts",
1840
+ "method": "delete",
1841
+ "path": "/marketing/contacts"
1842
+ },
1843
+ {
1844
+ "fnName": "gETMcContats",
1845
+ "method": "get",
1846
+ "path": "/marketing/contacts"
1847
+ },
1848
+ {
1849
+ "fnName": "gETMcContactsCount",
1850
+ "method": "get",
1851
+ "path": "/marketing/contacts/count"
1852
+ },
1853
+ {
1854
+ "fnName": "pOSTMcContactsExports",
1855
+ "method": "post",
1856
+ "path": "/marketing/contacts/exports"
1857
+ },
1858
+ {
1859
+ "fnName": "gETMarketingContactsExports",
1860
+ "method": "get",
1861
+ "path": "/marketing/contacts/exports"
1862
+ },
1863
+ {
1864
+ "fnName": "gETMcContactsId",
1865
+ "method": "get",
1866
+ "path": "/marketing/contacts/{id}"
1867
+ },
1868
+ {
1869
+ "fnName": "pOSTMcContactsSearch",
1870
+ "method": "post",
1871
+ "path": "/marketing/contacts/search"
1872
+ },
1873
+ {
1874
+ "fnName": "pUTMcContactsImports",
1875
+ "method": "put",
1876
+ "path": "/marketing/contacts/imports"
1877
+ },
1878
+ {
1879
+ "fnName": "gETMarketingContactsImportsId",
1880
+ "method": "get",
1881
+ "path": "/marketing/contacts/imports/{id}"
1882
+ },
1883
+ {
1884
+ "fnName": "gETMcContactsExportsId",
1885
+ "method": "get",
1886
+ "path": "/marketing/contacts/exports/{id}"
1887
+ },
1888
+ {
1889
+ "fnName": "pOSTMarketingContactsBatch",
1890
+ "method": "post",
1891
+ "path": "/marketing/contacts/batch"
1892
+ },
1893
+ {
1894
+ "fnName": "pOSTMarketingContactsSearchEmails",
1895
+ "method": "post",
1896
+ "path": "/marketing/contacts/search/emails"
1897
+ },
1898
+ {
1899
+ "fnName": "pOSTSegments",
1900
+ "method": "post",
1901
+ "path": "/marketing/segments/2.0"
1902
+ },
1903
+ {
1904
+ "fnName": "gETSegments",
1905
+ "method": "get",
1906
+ "path": "/marketing/segments/2.0"
1907
+ },
1908
+ {
1909
+ "fnName": "pATCHSegmentsSegmentId",
1910
+ "method": "patch",
1911
+ "path": "/marketing/segments/2.0/{segment_id}"
1912
+ },
1913
+ {
1914
+ "fnName": "gETSegmentsSegmentId",
1915
+ "method": "get",
1916
+ "path": "/marketing/segments/2.0/{segment_id}"
1917
+ },
1918
+ {
1919
+ "fnName": "dELETESegmentsSegmentId",
1920
+ "method": "delete",
1921
+ "path": "/marketing/segments/2.0/{segment_id}"
1922
+ },
1923
+ {
1924
+ "fnName": "pOSTMarketingSenders",
1925
+ "method": "post",
1926
+ "path": "/marketing/senders"
1927
+ },
1928
+ {
1929
+ "fnName": "pOSTMcLists",
1930
+ "method": "post",
1931
+ "path": "/marketing/lists"
1932
+ },
1933
+ {
1934
+ "fnName": "gETMcLists",
1935
+ "method": "get",
1936
+ "path": "/marketing/lists"
1937
+ },
1938
+ {
1939
+ "fnName": "gETMcListsIdContactsCount",
1940
+ "method": "get",
1941
+ "path": "/marketing/lists/{id}/contacts/count"
1942
+ },
1943
+ {
1944
+ "fnName": "gETMcListsId",
1945
+ "method": "get",
1946
+ "path": "/marketing/lists/{id}"
1947
+ },
1948
+ {
1949
+ "fnName": "pATCHMcListsId",
1950
+ "method": "patch",
1951
+ "path": "/marketing/lists/{id}"
1952
+ },
1953
+ {
1954
+ "fnName": "dELETEListsId",
1955
+ "method": "delete",
1956
+ "path": "/marketing/lists/{id}"
1957
+ },
1958
+ {
1959
+ "fnName": "dELETEMcListsIdContacts",
1960
+ "method": "delete",
1961
+ "path": "/marketing/lists/{id}/contacts"
1962
+ },
1963
+ {
1964
+ "fnName": "pOSTMcFieldDefinitions",
1965
+ "method": "post",
1966
+ "path": "/marketing/field_definitions"
1967
+ },
1968
+ {
1969
+ "fnName": "gETMcFieldDefinitions",
1970
+ "method": "get",
1971
+ "path": "/marketing/field_definitions"
1972
+ },
1973
+ {
1974
+ "fnName": "pATCHMcFieldDefinitionsCustomFieldId",
1975
+ "method": "patch",
1976
+ "path": "/marketing/field_definitions/{custom_field_id}"
1977
+ },
1978
+ {
1979
+ "fnName": "dELETEMcFieldDefinitionsCustomFieldId",
1980
+ "method": "delete",
1981
+ "path": "/marketing/field_definitions/{custom_field_id}"
1982
+ },
1983
+ {
1984
+ "fnName": "pOSTMarketingSegments",
1985
+ "method": "post",
1986
+ "path": "/marketing/segments"
1987
+ },
1988
+ {
1989
+ "fnName": "gETMarketingSegments",
1990
+ "method": "get",
1991
+ "path": "/marketing/segments"
1992
+ },
1993
+ {
1994
+ "fnName": "gETMarketingSegmentsSegmentId",
1995
+ "method": "get",
1996
+ "path": "/marketing/segments/{segment_id}"
1997
+ },
1998
+ {
1999
+ "fnName": "pATCHMarketingSegmentsSegmentId",
2000
+ "method": "patch",
2001
+ "path": "/marketing/segments/{segment_id}"
2002
+ },
2003
+ {
2004
+ "fnName": "dELETEMarketingSegmentsSegmentId",
2005
+ "method": "delete",
2006
+ "path": "/marketing/segments/{segment_id}"
2007
+ },
2008
+ {
2009
+ "fnName": "pOSTMarketingSegmentsDelete",
2010
+ "method": "post",
2011
+ "path": "/marketing/segments/delete"
2012
+ },
2013
+ {
2014
+ "fnName": "pOSTMarketingSinglesends",
2015
+ "method": "post",
2016
+ "path": "/marketing/singlesends"
2017
+ },
2018
+ {
2019
+ "fnName": "gETMarketingSinglesends",
2020
+ "method": "get",
2021
+ "path": "/marketing/singlesends"
2022
+ },
2023
+ {
2024
+ "fnName": "dELETEMarketingSinglesends",
2025
+ "method": "delete",
2026
+ "path": "/marketing/singlesends"
2027
+ },
2028
+ {
2029
+ "fnName": "pOSTMarketingSinglesendsId",
2030
+ "method": "post",
2031
+ "path": "/marketing/singlesends/{id}"
2032
+ },
2033
+ {
2034
+ "fnName": "pATCHMarketingSinglesendsId",
2035
+ "method": "patch",
2036
+ "path": "/marketing/singlesends/{id}"
2037
+ },
2038
+ {
2039
+ "fnName": "gETMarketingSinglesendsId",
2040
+ "method": "get",
2041
+ "path": "/marketing/singlesends/{id}"
2042
+ },
2043
+ {
2044
+ "fnName": "dELETEMarketingSinglesendsId",
2045
+ "method": "delete",
2046
+ "path": "/marketing/singlesends/{id}"
2047
+ },
2048
+ {
2049
+ "fnName": "pOSTMarketingSinglesendsSearch",
2050
+ "method": "post",
2051
+ "path": "/marketing/singlesends/search"
2052
+ },
2053
+ {
2054
+ "fnName": "pUTMarketingSinglesendsIdSchedule",
2055
+ "method": "put",
2056
+ "path": "/marketing/singlesends/{id}/schedule"
2057
+ },
2058
+ {
2059
+ "fnName": "dELETEMarketingSinglesendsIdSchedule",
2060
+ "method": "delete",
2061
+ "path": "/marketing/singlesends/{id}/schedule"
2062
+ },
2063
+ {
2064
+ "fnName": "gETMarketingSinglesendsCategories",
2065
+ "method": "get",
2066
+ "path": "/marketing/singlesends/categories"
2067
+ },
2068
+ {
2069
+ "fnName": "pOSTMarketingTestSendEmail",
2070
+ "method": "post",
2071
+ "path": "/marketing/test/send_email"
2072
+ },
2073
+ {
2074
+ "fnName": "getallAutomationStats",
2075
+ "method": "get",
2076
+ "path": "/marketing/stats/automations"
2077
+ },
2078
+ {
2079
+ "fnName": "getAutomationStat",
2080
+ "method": "get",
2081
+ "path": "/marketing/stats/automations/{id}"
2082
+ },
2083
+ {
2084
+ "fnName": "getallSinglesendStats",
2085
+ "method": "get",
2086
+ "path": "/marketing/stats/singlesends"
2087
+ },
2088
+ {
2089
+ "fnName": "getSinglesendStat",
2090
+ "method": "get",
2091
+ "path": "/marketing/stats/singlesends/{id}"
2092
+ },
2093
+ {
2094
+ "fnName": "getAutomationLinkStat",
2095
+ "method": "get",
2096
+ "path": "/marketing/stats/automations/{id}/links"
2097
+ },
2098
+ {
2099
+ "fnName": "getSinglesendLinkStat",
2100
+ "method": "get",
2101
+ "path": "/marketing/stats/singlesends/{id}/links"
2102
+ },
2103
+ {
2104
+ "fnName": "getSinglesendStatsExport",
2105
+ "method": "get",
2106
+ "path": "/marketing/stats/singlesends/export"
2107
+ },
2108
+ {
2109
+ "fnName": "getAutomationsStatsExport",
2110
+ "method": "get",
2111
+ "path": "/marketing/stats/automations/export"
2112
+ },
2113
+ {
2114
+ "fnName": "pOSTSenders",
2115
+ "method": "post",
2116
+ "path": "/senders"
2117
+ },
2118
+ {
2119
+ "fnName": "gETV3Senders",
2120
+ "method": "get",
2121
+ "path": "/senders"
2122
+ },
2123
+ {
2124
+ "fnName": "gETV3SendersSenderId",
2125
+ "method": "get",
2126
+ "path": "/senders/{sender_id}"
2127
+ },
2128
+ {
2129
+ "fnName": "pATCHV3SendersSenderId",
2130
+ "method": "patch",
2131
+ "path": "/senders/{sender_id}"
2132
+ },
2133
+ {
2134
+ "fnName": "dELETEV3SendersSenderId",
2135
+ "method": "delete",
2136
+ "path": "/senders/{sender_id}"
2137
+ },
2138
+ {
2139
+ "fnName": "pOSTV3SendersSenderIdResendVerification",
2140
+ "method": "post",
2141
+ "path": "/senders/{sender_id}/resend_verification"
2142
+ },
2143
+ {
2144
+ "fnName": "pOSTContactdbLists",
2145
+ "method": "post",
2146
+ "path": "/contactdb/lists"
2147
+ },
2148
+ {
2149
+ "fnName": "gETContactdbLists",
2150
+ "method": "get",
2151
+ "path": "/contactdb/lists"
2152
+ },
2153
+ {
2154
+ "fnName": "dELETEContactdbLists",
2155
+ "method": "delete",
2156
+ "path": "/contactdb/lists"
2157
+ },
2158
+ {
2159
+ "fnName": "gETContactdbListsListId",
2160
+ "method": "get",
2161
+ "path": "/contactdb/lists/{list_id}"
2162
+ },
2163
+ {
2164
+ "fnName": "pATCHContactdbListsListId",
2165
+ "method": "patch",
2166
+ "path": "/contactdb/lists/{list_id}"
2167
+ },
2168
+ {
2169
+ "fnName": "dELETEContactdbListsListId",
2170
+ "method": "delete",
2171
+ "path": "/contactdb/lists/{list_id}"
2172
+ },
2173
+ {
2174
+ "fnName": "gETContactdbListsListIdRecipients",
2175
+ "method": "get",
2176
+ "path": "/contactdb/lists/{list_id}/recipients"
2177
+ },
2178
+ {
2179
+ "fnName": "pOSTContactdbListsListIdRecipients",
2180
+ "method": "post",
2181
+ "path": "/contactdb/lists/{list_id}/recipients"
2182
+ },
2183
+ {
2184
+ "fnName": "pOSTContactdbListsListIdRecipientsRecipientId",
2185
+ "method": "post",
2186
+ "path": "/contactdb/lists/{list_id}/recipients/{recipient_id}"
2187
+ },
2188
+ {
2189
+ "fnName": "dELETEContactdbListsListIdRecipientsRecipientId",
2190
+ "method": "delete",
2191
+ "path": "/contactdb/lists/{list_id}/recipients/{recipient_id}"
2192
+ },
2193
+ {
2194
+ "fnName": "pOSTContactdbRecipients",
2195
+ "method": "post",
2196
+ "path": "/contactdb/recipients"
2197
+ },
2198
+ {
2199
+ "fnName": "pATCHContactdbRecipients",
2200
+ "method": "patch",
2201
+ "path": "/contactdb/recipients"
2202
+ },
2203
+ {
2204
+ "fnName": "dELETEContactdbRecipients",
2205
+ "method": "delete",
2206
+ "path": "/contactdb/recipients"
2207
+ },
2208
+ {
2209
+ "fnName": "gETContactdbRecipients",
2210
+ "method": "get",
2211
+ "path": "/contactdb/recipients"
2212
+ },
2213
+ {
2214
+ "fnName": "gETContactdbStatus",
2215
+ "method": "get",
2216
+ "path": "/contactdb/status"
2217
+ },
2218
+ {
2219
+ "fnName": "gETContactdbRecipientsRecipientId",
2220
+ "method": "get",
2221
+ "path": "/contactdb/recipients/{recipient_id}"
2222
+ },
2223
+ {
2224
+ "fnName": "dELETEContactdbRecipientsRecipientId",
2225
+ "method": "delete",
2226
+ "path": "/contactdb/recipients/{recipient_id}"
2227
+ },
2228
+ {
2229
+ "fnName": "gETContactdbRecipientsRecipientIdLists",
2230
+ "method": "get",
2231
+ "path": "/contactdb/recipients/{recipient_id}/lists"
2232
+ },
2233
+ {
2234
+ "fnName": "gETContactdbRecipientsBillableCount",
2235
+ "method": "get",
2236
+ "path": "/contactdb/recipients/billable_count"
2237
+ },
2238
+ {
2239
+ "fnName": "gETContactdbRecipientsCount",
2240
+ "method": "get",
2241
+ "path": "/contactdb/recipients/count"
2242
+ },
2243
+ {
2244
+ "fnName": "gETContactdbRecipientsSearch",
2245
+ "method": "get",
2246
+ "path": "/contactdb/recipients/search"
2247
+ },
2248
+ {
2249
+ "fnName": "pOSTContactdbRecipientsSearch",
2250
+ "method": "post",
2251
+ "path": "/contactdb/recipients/search"
2252
+ },
2253
+ {
2254
+ "fnName": "pOSTContactdbCustomFields",
2255
+ "method": "post",
2256
+ "path": "/contactdb/custom_fields"
2257
+ },
2258
+ {
2259
+ "fnName": "gETContactdbCustomFields",
2260
+ "method": "get",
2261
+ "path": "/contactdb/custom_fields"
2262
+ },
2263
+ {
2264
+ "fnName": "gETContactdbCustomFieldsCustomFieldId",
2265
+ "method": "get",
2266
+ "path": "/contactdb/custom_fields/{custom_field_id}"
2267
+ },
2268
+ {
2269
+ "fnName": "dELETEContactdbCustomFieldsCustomFieldId",
2270
+ "method": "delete",
2271
+ "path": "/contactdb/custom_fields/{custom_field_id}"
2272
+ },
2273
+ {
2274
+ "fnName": "gETContactdbReservedFields",
2275
+ "method": "get",
2276
+ "path": "/contactdb/reserved_fields"
2277
+ },
2278
+ {
2279
+ "fnName": "pOSTContactdbSegments",
2280
+ "method": "post",
2281
+ "path": "/contactdb/segments"
2282
+ },
2283
+ {
2284
+ "fnName": "gETContactdbSegments",
2285
+ "method": "get",
2286
+ "path": "/contactdb/segments"
2287
+ },
2288
+ {
2289
+ "fnName": "gETContactdbSegmentsSegmentId",
2290
+ "method": "get",
2291
+ "path": "/contactdb/segments/{segment_id}"
2292
+ },
2293
+ {
2294
+ "fnName": "pATCHContactdbSegmentsSegmentId",
2295
+ "method": "patch",
2296
+ "path": "/contactdb/segments/{segment_id}"
2297
+ },
2298
+ {
2299
+ "fnName": "dELETEContactdbSegmentsSegmentId",
2300
+ "method": "delete",
2301
+ "path": "/contactdb/segments/{segment_id}"
2302
+ },
2303
+ {
2304
+ "fnName": "gETContactdbSegmentsSegmentIdRecipients",
2305
+ "method": "get",
2306
+ "path": "/contactdb/segments/{segment_id}/recipients"
2307
+ },
2308
+ {
2309
+ "fnName": "gETCategories",
2310
+ "method": "get",
2311
+ "path": "/categories"
2312
+ },
2313
+ {
2314
+ "fnName": "gETCategoriesStatsSums",
2315
+ "method": "get",
2316
+ "path": "/categories/stats/sums"
2317
+ },
2318
+ {
2319
+ "fnName": "gETCategoriesStats",
2320
+ "method": "get",
2321
+ "path": "/categories/stats"
2322
+ },
2323
+ {
2324
+ "fnName": "pOSTCampaigns",
2325
+ "method": "post",
2326
+ "path": "/campaigns"
2327
+ },
2328
+ {
2329
+ "fnName": "gETCampaigns",
2330
+ "method": "get",
2331
+ "path": "/campaigns"
2332
+ },
2333
+ {
2334
+ "fnName": "gETCampaignsCampaignId",
2335
+ "method": "get",
2336
+ "path": "/campaigns/{campaign_id}"
2337
+ },
2338
+ {
2339
+ "fnName": "dELETECampaignsCampaignId",
2340
+ "method": "delete",
2341
+ "path": "/campaigns/{campaign_id}"
2342
+ },
2343
+ {
2344
+ "fnName": "pATCHCampaignsCampaignId",
2345
+ "method": "patch",
2346
+ "path": "/campaigns/{campaign_id}"
2347
+ },
2348
+ {
2349
+ "fnName": "pOSTCampaignsCampaignIdSchedulesNow",
2350
+ "method": "post",
2351
+ "path": "/campaigns/{campaign_id}/schedules/now"
2352
+ },
2353
+ {
2354
+ "fnName": "pOSTCampaignsCampaignIdSchedules",
2355
+ "method": "post",
2356
+ "path": "/campaigns/{campaign_id}/schedules"
2357
+ },
2358
+ {
2359
+ "fnName": "pATCHCampaignsCampaignIdSchedules",
2360
+ "method": "patch",
2361
+ "path": "/campaigns/{campaign_id}/schedules"
2362
+ },
2363
+ {
2364
+ "fnName": "gETCampaignsCampaignIdSchedules",
2365
+ "method": "get",
2366
+ "path": "/campaigns/{campaign_id}/schedules"
2367
+ },
2368
+ {
2369
+ "fnName": "dELETECampaignsCampaignIdSchedules",
2370
+ "method": "delete",
2371
+ "path": "/campaigns/{campaign_id}/schedules"
2372
+ },
2373
+ {
2374
+ "fnName": "pOSTCampaignsCampaignIdSchedulesTest",
2375
+ "method": "post",
2376
+ "path": "/campaigns/{campaign_id}/schedules/test"
2377
+ },
2378
+ {
2379
+ "fnName": "pOSTTemplates",
2380
+ "method": "post",
2381
+ "path": "/templates"
2382
+ },
2383
+ {
2384
+ "fnName": "gETTemplates",
2385
+ "method": "get",
2386
+ "path": "/templates"
2387
+ },
2388
+ {
2389
+ "fnName": "pOSTTemplatesTemplateId",
2390
+ "method": "post",
2391
+ "path": "/templates/{template_id}"
2392
+ },
2393
+ {
2394
+ "fnName": "gETTemplatesTemplateId",
2395
+ "method": "get",
2396
+ "path": "/templates/{template_id}"
2397
+ },
2398
+ {
2399
+ "fnName": "pATCHTemplatesTemplateId",
2400
+ "method": "patch",
2401
+ "path": "/templates/{template_id}"
2402
+ },
2403
+ {
2404
+ "fnName": "dELETETemplatesTemplateId",
2405
+ "method": "delete",
2406
+ "path": "/templates/{template_id}"
2407
+ },
2408
+ {
2409
+ "fnName": "pOSTTemplatesTemplateIdVersions",
2410
+ "method": "post",
2411
+ "path": "/templates/{template_id}/versions"
2412
+ },
2413
+ {
2414
+ "fnName": "pOSTTemplatesTemplateIdVersionsVersionIdActivate",
2415
+ "method": "post",
2416
+ "path": "/templates/{template_id}/versions/{version_id}/activate"
2417
+ },
2418
+ {
2419
+ "fnName": "gETTemplatesTemplateIdVersionsVersionId",
2420
+ "method": "get",
2421
+ "path": "/templates/{template_id}/versions/{version_id}"
2422
+ },
2423
+ {
2424
+ "fnName": "pATCHTemplatesTemplateIdVersionsVersionId",
2425
+ "method": "patch",
2426
+ "path": "/templates/{template_id}/versions/{version_id}"
2427
+ },
2428
+ {
2429
+ "fnName": "dELETETemplatesTemplateIdVersionsVersionId",
2430
+ "method": "delete",
2431
+ "path": "/templates/{template_id}/versions/{version_id}"
2432
+ },
2433
+ {
2434
+ "fnName": "gETUserWebhooksEventSettings",
2435
+ "method": "get",
2436
+ "path": "/user/webhooks/event/settings"
2437
+ },
2438
+ {
2439
+ "fnName": "pATCHUserWebhooksEventSettings",
2440
+ "method": "patch",
2441
+ "path": "/user/webhooks/event/settings"
2442
+ },
2443
+ {
2444
+ "fnName": "gETUserWebhooksParseSettings",
2445
+ "method": "get",
2446
+ "path": "/user/webhooks/parse/settings"
2447
+ },
2448
+ {
2449
+ "fnName": "pOSTUserWebhooksParseSettings",
2450
+ "method": "post",
2451
+ "path": "/user/webhooks/parse/settings"
2452
+ },
2453
+ {
2454
+ "fnName": "gETUserWebhooksParseStats",
2455
+ "method": "get",
2456
+ "path": "/user/webhooks/parse/stats"
2457
+ },
2458
+ {
2459
+ "fnName": "gETUserWebhooksEventSettingsSigned",
2460
+ "method": "get",
2461
+ "path": "/user/webhooks/event/settings/signed"
2462
+ },
2463
+ {
2464
+ "fnName": "pATCHUserWebhooksEventSettingsSigned",
2465
+ "method": "patch",
2466
+ "path": "/user/webhooks/event/settings/signed"
2467
+ },
2468
+ {
2469
+ "fnName": "pOSTUserWebhooksEventTest",
2470
+ "method": "post",
2471
+ "path": "/user/webhooks/event/test"
2472
+ },
2473
+ {
2474
+ "fnName": "gETUserWebhooksParseSettingsHostname",
2475
+ "method": "get",
2476
+ "path": "/user/webhooks/parse/settings/{hostname}"
2477
+ },
2478
+ {
2479
+ "fnName": "pATCHUserWebhooksParseSettingsHostname",
2480
+ "method": "patch",
2481
+ "path": "/user/webhooks/parse/settings/{hostname}"
2482
+ },
2483
+ {
2484
+ "fnName": "dELETEUserWebhooksParseSettingsHostname",
2485
+ "method": "delete",
2486
+ "path": "/user/webhooks/parse/settings/{hostname}"
2487
+ },
2488
+ {
2489
+ "fnName": "gETMessages",
2490
+ "method": "get",
2491
+ "path": "/messages"
2492
+ },
2493
+ {
2494
+ "fnName": "gETV3MessagesMsgId",
2495
+ "method": "get",
2496
+ "path": "/messages/{msg_id}"
2497
+ },
2498
+ {
2499
+ "fnName": "pOSTV3MessagesDownload",
2500
+ "method": "post",
2501
+ "path": "/messages/download"
2502
+ },
2503
+ {
2504
+ "fnName": "gETV3MessagesDownloadDownloadUuid",
2505
+ "method": "get",
2506
+ "path": "/messages/download/{download_uuid}"
2507
+ },
2508
+ {
2509
+ "fnName": "gETTrackingSettings",
2510
+ "method": "get",
2511
+ "path": "/tracking_settings"
2512
+ },
2513
+ {
2514
+ "fnName": "gETTrackingSettingsClick",
2515
+ "method": "get",
2516
+ "path": "/tracking_settings/click"
2517
+ },
2518
+ {
2519
+ "fnName": "pATCHTrackingSettingsClick",
2520
+ "method": "patch",
2521
+ "path": "/tracking_settings/click"
2522
+ },
2523
+ {
2524
+ "fnName": "gETTrackingSettingsGoogleAnalytics",
2525
+ "method": "get",
2526
+ "path": "/tracking_settings/google_analytics"
2527
+ },
2528
+ {
2529
+ "fnName": "pATCHTrackingSettingsGoogleAnalytics",
2530
+ "method": "patch",
2531
+ "path": "/tracking_settings/google_analytics"
2532
+ },
2533
+ {
2534
+ "fnName": "gETTrackingSettingsOpen",
2535
+ "method": "get",
2536
+ "path": "/tracking_settings/open"
2537
+ },
2538
+ {
2539
+ "fnName": "pATCHTrackingSettingsOpen",
2540
+ "method": "patch",
2541
+ "path": "/tracking_settings/open"
2542
+ },
2543
+ {
2544
+ "fnName": "gETTrackingSettingsSubscription",
2545
+ "method": "get",
2546
+ "path": "/tracking_settings/subscription"
2547
+ },
2548
+ {
2549
+ "fnName": "pATCHTrackingSettingsSubscription",
2550
+ "method": "patch",
2551
+ "path": "/tracking_settings/subscription"
2552
+ },
2553
+ {
2554
+ "fnName": "gETStats",
2555
+ "method": "get",
2556
+ "path": "/stats"
2557
+ },
2558
+ {
2559
+ "fnName": "gETGeoStats",
2560
+ "method": "get",
2561
+ "path": "/geo/stats"
2562
+ },
2563
+ {
2564
+ "fnName": "gETDevicesStats",
2565
+ "method": "get",
2566
+ "path": "/devices/stats"
2567
+ },
2568
+ {
2569
+ "fnName": "gETClientsStats",
2570
+ "method": "get",
2571
+ "path": "/clients/stats"
2572
+ },
2573
+ {
2574
+ "fnName": "gETClientsClientTypeStats",
2575
+ "method": "get",
2576
+ "path": "/clients/{client_type}/stats"
2577
+ },
2578
+ {
2579
+ "fnName": "gETMailboxProvidersStats",
2580
+ "method": "get",
2581
+ "path": "/mailbox_providers/stats"
2582
+ },
2583
+ {
2584
+ "fnName": "gETBrowsersStats",
2585
+ "method": "get",
2586
+ "path": "/browsers/stats"
2587
+ },
2588
+ {
2589
+ "fnName": "gETSuppressionBounces",
2590
+ "method": "get",
2591
+ "path": "/suppression/bounces"
2592
+ },
2593
+ {
2594
+ "fnName": "dELETESuppressionBounces",
2595
+ "method": "delete",
2596
+ "path": "/suppression/bounces"
2597
+ },
2598
+ {
2599
+ "fnName": "gETSuppressionBouncesEmail",
2600
+ "method": "get",
2601
+ "path": "/suppression/bounces/{email}"
2602
+ },
2603
+ {
2604
+ "fnName": "dELETESuppressionBouncesEmail",
2605
+ "method": "delete",
2606
+ "path": "/suppression/bounces/{email}"
2607
+ },
2608
+ {
2609
+ "fnName": "gETSuppressionBlocks",
2610
+ "method": "get",
2611
+ "path": "/suppression/blocks"
2612
+ },
2613
+ {
2614
+ "fnName": "dELETESuppressionBlocks",
2615
+ "method": "delete",
2616
+ "path": "/suppression/blocks"
2617
+ },
2618
+ {
2619
+ "fnName": "gETSuppressionBlocksEmail",
2620
+ "method": "get",
2621
+ "path": "/suppression/blocks/{email}"
2622
+ },
2623
+ {
2624
+ "fnName": "dELETESuppressionBlocksEmail",
2625
+ "method": "delete",
2626
+ "path": "/suppression/blocks/{email}"
2627
+ },
2628
+ {
2629
+ "fnName": "gETSuppressionSpamReports",
2630
+ "method": "get",
2631
+ "path": "/suppression/spam_reports"
2632
+ },
2633
+ {
2634
+ "fnName": "dELETESuppressionSpamReports",
2635
+ "method": "delete",
2636
+ "path": "/suppression/spam_reports"
2637
+ },
2638
+ {
2639
+ "fnName": "gETSuppressionSpamReportsEmail",
2640
+ "method": "get",
2641
+ "path": "/suppression/spam_reports/{email}"
2642
+ },
2643
+ {
2644
+ "fnName": "dELETESuppressionSpamReportsEmail",
2645
+ "method": "delete",
2646
+ "path": "/suppression/spam_reports/{email}"
2647
+ },
2648
+ {
2649
+ "fnName": "pOSTAsmSuppressionsGlobal",
2650
+ "method": "post",
2651
+ "path": "/asm/suppressions/global"
2652
+ },
2653
+ {
2654
+ "fnName": "gETSuppressionUnsubscribes",
2655
+ "method": "get",
2656
+ "path": "/suppression/unsubscribes"
2657
+ },
2658
+ {
2659
+ "fnName": "gETAsmSuppressionsGlobalEmail",
2660
+ "method": "get",
2661
+ "path": "/asm/suppressions/global/{email}"
2662
+ },
2663
+ {
2664
+ "fnName": "dELETEAsmSuppressionsGlobalEmail",
2665
+ "method": "delete",
2666
+ "path": "/asm/suppressions/global/{email}"
2667
+ },
2668
+ {
2669
+ "fnName": "pOSTAsmGroups",
2670
+ "method": "post",
2671
+ "path": "/asm/groups"
2672
+ },
2673
+ {
2674
+ "fnName": "gETAsmGroups",
2675
+ "method": "get",
2676
+ "path": "/asm/groups"
2677
+ },
2678
+ {
2679
+ "fnName": "gETAsmGroupsGroupId",
2680
+ "method": "get",
2681
+ "path": "/asm/groups/{group_id}"
2682
+ },
2683
+ {
2684
+ "fnName": "pATCHAsmGroupsGroupId",
2685
+ "method": "patch",
2686
+ "path": "/asm/groups/{group_id}"
2687
+ },
2688
+ {
2689
+ "fnName": "dELETEAsmGroupsGroupId",
2690
+ "method": "delete",
2691
+ "path": "/asm/groups/{group_id}"
2692
+ },
2693
+ {
2694
+ "fnName": "pOSTAsmGroupsGroupIdSuppressions",
2695
+ "method": "post",
2696
+ "path": "/asm/groups/{group_id}/suppressions"
2697
+ },
2698
+ {
2699
+ "fnName": "gETAsmGroupsGroupIdSuppressions",
2700
+ "method": "get",
2701
+ "path": "/asm/groups/{group_id}/suppressions"
2702
+ },
2703
+ {
2704
+ "fnName": "pOSTAsmGroupsGroupIdSuppressionsSearch",
2705
+ "method": "post",
2706
+ "path": "/asm/groups/{group_id}/suppressions/search"
2707
+ },
2708
+ {
2709
+ "fnName": "gETAsmSuppressions",
2710
+ "method": "get",
2711
+ "path": "/asm/suppressions"
2712
+ },
2713
+ {
2714
+ "fnName": "gETAsmSuppressionsEmail",
2715
+ "method": "get",
2716
+ "path": "/asm/suppressions/{email}"
2717
+ },
2718
+ {
2719
+ "fnName": "dELETEAsmGroupsGroupIdSuppressionsEmail",
2720
+ "method": "delete",
2721
+ "path": "/asm/groups/{group_id}/suppressions/{email}"
2722
+ },
2723
+ {
2724
+ "fnName": "gETSuppressionInvalidEmails",
2725
+ "method": "get",
2726
+ "path": "/suppression/invalid_emails"
2727
+ },
2728
+ {
2729
+ "fnName": "dELETESuppressionInvalidEmails",
2730
+ "method": "delete",
2731
+ "path": "/suppression/invalid_emails"
2732
+ },
2733
+ {
2734
+ "fnName": "gETSuppressionInvalidEmailsEmail",
2735
+ "method": "get",
2736
+ "path": "/suppression/invalid_emails/{email}"
2737
+ },
2738
+ {
2739
+ "fnName": "dELETESuppressionInvalidEmailsEmail",
2740
+ "method": "delete",
2741
+ "path": "/suppression/invalid_emails/{email}"
2742
+ }
2743
+ ],
2744
+ "errors": [],
2745
+ "warnings": [],
2746
+ "callsTotal": 334,
2747
+ "callsConverted": 334,
2748
+ "no_mockdata_num": 334
2749
+ }
2750
+ }