forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mandrill-api.d.ts
1182 lines (1039 loc) · 83.6 KB
/
mandrill-api.d.ts
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
// Type definitions for Mandrill API 1.x
// Project: http://mandrill.com/
// Definitions by: Paulo Cesar <https://github.com/pocesar/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/* =================== USAGE ===================
import mandrill from 'mandrill-api';
=============================================== */
/// <reference path="../node/node.d.ts" />
declare module 'mandrill-api' {
export interface ICallback {
(json: Object): void;
}
export interface IErrorCallback {
(err: Error): void;
}
export class Mandrill {
apikey: string;
debug: boolean;
templates: Templates;
exports: Exports;
users: Users;
rejects: Rejects;
inbound: Inbound;
tags: Tags;
messages: Messages;
whitelists: Whitelists;
ips: Ips;
internal: Internal;
subaccounts: Subaccounts;
urls: Urls;
webhooks: Webhooks;
senders: Senders;
metadata: Metadata;
onerror: IErrorCallback;
constructor(apikey: string, debug?: boolean);
call(uri: string, params: any, onresult?: ICallback, onerror?: ICallback): void;
}
export class Templates {
constructor(master: Mandrill);
/**
* Add a new template
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the name for the new template - must be unique
* @option params {String} from_email a default sending address for emails sent using this template
* @option params {String} from_name a default from name to be used
* @option params {String} subject a default subject line to be used
* @option params {String} code the HTML code for the template with mc:edit attributes for the editable elements
* @option params {String} text a default text part to be used when sending with this template
* @option params {Boolean} publish set to false to add a draft template without publishing
* @option params {Array} labels an optional array of up to 10 labels to use for filtering templates
* - labels[] {String} a single label
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
add(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Get the information for an existing template
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the immutable name of an existing template
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Update the code for an existing template. If null is provided for any fields, the values will remain unchanged.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the immutable name of an existing template
* @option params {String} from_email the new default sending address
* @option params {String} from_name the new default from name
* @option params {String} subject the new default subject line
* @option params {String} code the new code for the template
* @option params {String} text the new default text part to be used
* @option params {Boolean} publish set to false to update the draft version of the template without publishing
* @option params {Array} labels an optional array of up to 10 labels to use for filtering templates
* - labels[] {String} a single label
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
update(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Publish the content for the template. Any new messages sent using this template will start using the content that was previously in draft.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the immutable name of an existing template
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
publish(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Delete a template
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the immutable name of an existing template
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return a list of all the templates available to this user
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} label an optional label to filter the templates
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the recent history (hourly stats for the last 30 days) for a template
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} name the name of an existing template
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
timeSeries(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Inject content and optionally merge fields into a template, returning the HTML that results
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} template_name the immutable name of a template that exists in the user's account
* @option params {Array} template_content an array of template content to render. Each item in the array should be a struct with two keys - name: the name of the content block to set the content for, and content: the actual content to put into the block
* - template_content[] {Object} the injection of a single piece of content into a single editable region
* - name {String} the name of the mc:edit editable region to inject into
* - content {String} the content to inject
* @option params {Array} merge_vars optional merge variables to use for injecting merge field content. If this is not provided, no merge fields will be replaced.
* - merge_vars[] {Object} a single merge variable
* - name {String} the merge variable's name. Merge variable names are case-insensitive and may not start with _
* - content {String} the merge variable's content
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
render(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Exports {
constructor(master: Mandrill);
/**
* Returns information about an export job. If the export job's state is 'complete',
* the returned data will include a URL you can use to fetch the results. Every export
* job produces a zip archive, but the format of the archive is distinct for each job
* type. The api calls that initiate exports include more details about the output format
* for that job type.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id an export job identifier
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Returns a list of your exports.
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Begins an export of your rejection blacklist. The blacklist will be exported to a zip archive
* containing a single file named rejects.csv that includes the following fields: email,
* reason, detail, created_at, expires_at, last_event_at, expires_at.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} notify_email an optional email address to notify when the export job has finished.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
rejects(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Begins an export of your rejection whitelist. The whitelist will be exported to a zip archive
* containing a single file named whitelist.csv that includes the following fields:
* email, detail, created_at.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} notify_email an optional email address to notify when the export job has finished.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
whitelist(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Begins an export of your activity history. The activity will be exported to a zip archive
* containing a single file named activity.csv in the same format as you would be able to export
* from your account's activity view. It includes the following fields: Date, Email Address,
* Sender, Subject, Status, Tags, Opens, Clicks, Bounce Detail. If you have configured any custom
* metadata fields, they will be included in the exported data.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} notify_email an optional email address to notify when the export job has finished
* @option params {String} date_from start date as a UTC string in YYYY-MM-DD HH:MM:SS format
* @option params {String} date_to end date as a UTC string in YYYY-MM-DD HH:MM:SS format
* @option params {Array} tags an array of tag names to narrow the export to; will match messages that contain ANY of the tags
* - tags[] {String} a tag name
* @option params {Array} senders an array of senders to narrow the export to
* - senders[] {String} a sender address
* @option params {Array} states an array of states to narrow the export to; messages with ANY of the states will be included
* - states[] {String} a message state
* @option params {Array} api_keys an array of api keys to narrow the export to; messsagse sent with ANY of the keys will be included
* - api_keys[] {String} an API key associated with your account
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
activity(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Users {
constructor(master: Mandrill);
/**
* Return the information about the API-connected user
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Validate an API key and respond to a ping
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
ping(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Validate an API key and respond to a ping (anal JSON parser version)
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
ping2(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the senders that have tried to use this account, both verified and unverified
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
senders(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Rejects {
constructor(master: Mandrill);
/**
* Adds an email to your email rejection blacklist. Addresses that you
* add manually will never expire and there is no reputation penalty
* for removing them from your blacklist. Attempting to blacklist an
* address that has been whitelisted will have no effect.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email an email address to block
* @option params {String} comment an optional comment describing the rejection
* @option params {String} subaccount an optional unique identifier for the subaccount to limit the blacklist entry
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
add(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Retrieves your email rejection blacklist. You can provide an email
* address to limit the results. Returns up to 1000 results. By default,
* entries that have expired are excluded from the results; set
* include_expired to true to include them.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email an optional email address to search by
* @option params {Boolean} include_expired whether to include rejections that have already expired.
* @option params {String} subaccount an optional unique identifier for the subaccount to limit the blacklist
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Deletes an email rejection. There is no limit to how many rejections
* you can remove from your blacklist, but keep in mind that each deletion
* has an affect on your reputation.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email an email address
* @option params {String} subaccount an optional unique identifier for the subaccount to limit the blacklist deletion
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Inbound {
constructor(master: Mandrill);
/**
* List the domains that have been configured for inbound delivery
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
domains(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Add an inbound domain to your account
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} domain a domain name
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
addDomain(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Check the MX settings for an inbound domain. The domain must have already been added with the add-domain call
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} domain an existing inbound domain
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
checkDomain(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Delete an inbound domain from the account. All mail will stop routing for this domain immediately.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} domain an existing inbound domain
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
deleteDomain(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* List the mailbox routes defined for an inbound domain
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} domain the domain to check
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
routes(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Add a new mailbox route to an inbound domain
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} domain an existing inbound domain
* @option params {String} pattern the search pattern that the mailbox name should match
* @option params {String} url the webhook URL where the inbound messages will be published
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
addRoute(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Update the pattern or webhook of an existing inbound mailbox route. If null is provided for any fields, the values will remain unchanged.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of an existing mailbox route
* @option params {String} pattern the search pattern that the mailbox name should match
* @option params {String} url the webhook URL where the inbound messages will be published
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
updateRoute(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Delete an existing inbound mailbox route
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of an existing route
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
deleteRoute(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Take a raw MIME document destined for a domain with inbound domains set up, and send it to the inbound hook exactly as if it had been sent over SMTP
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} raw_message the full MIME document of an email message
* @option params {Array|null} to optionally define the recipients to receive the message - otherwise we'll use the To, Cc, and Bcc headers provided in the document
* - to[] {String} the email address of the recipient
* @option params {String} mail_from the address specified in the MAIL FROM stage of the SMTP conversation. Required for the SPF check.
* @option params {String} helo the identification provided by the client mta in the MTA state of the SMTP conversation. Required for the SPF check.
* @option params {String} client_address the remote MTA's ip address. Optional; required for the SPF check.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
sendRaw(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Tags {
constructor(master: Mandrill);
/**
* Return all of the user-defined tag information
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Deletes a tag permanently. Deleting a tag removes the tag from any messages
* that have been sent, and also deletes the tag's stats. There is no way to
* undo this operation, so use it carefully.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} tag a tag name
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return more detailed information about a single tag, including aggregates of recent stats
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} tag an existing tag name
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the recent history (hourly stats for the last 30 days) for a tag
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} tag an existing tag name
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
timeSeries(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the recent history (hourly stats for the last 30 days) for all tags
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
allTimeSeries(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Messages {
constructor(master: Mandrill);
/**
* Send a new transactional message through Mandrill
* @param {Object} params the hash of the parameters to pass to the request
* @option params {Struct} message the information on the message to send
* -html {String} the full HTML content to be sent
* -text {String} optional full text content to be sent
* -subject {String} the message subject
* -from_email {String} the sender email address.
* -from_name {String} optional from name to be used
* -to {Array} an array of recipient information.
* -to[] {Object} a single recipient's information.
* -email {String} the email address of the recipient
* -name {String} the optional display name to use for the recipient
* -type {String} the header type to use for the recipient, defaults to "to" if not provided
* -headers {Object} optional extra headers to add to the message (most headers are allowed)
* -important {Boolean} whether or not this message is important, and should be delivered ahead of non-important messages
* -track_opens {Boolean} whether or not to turn on open tracking for the message
* -track_clicks {Boolean} whether or not to turn on click tracking for the message
* -auto_text {Boolean} whether or not to automatically generate a text part for messages that are not given text
* -auto_html {Boolean} whether or not to automatically generate an HTML part for messages that are not given HTML
* -inline_css {Boolean} whether or not to automatically inline all CSS styles provided in the message HTML - only for HTML documents less than 256KB in size
* -url_strip_qs {Boolean} whether or not to strip the query string from URLs when aggregating tracked URL data
* -preserve_recipients {Boolean} whether or not to expose all recipients in to "To" header for each email
* -view_content_link {Boolean} set to false to remove content logging for sensitive emails
* -bcc_address {String} an optional address to receive an exact copy of each recipient's email
* -tracking_domain {String} a custom domain to use for tracking opens and clicks instead of mandrillapp.com
* -signing_domain {String} a custom domain to use for SPF/DKIM signing instead of mandrill (for "via" or "on behalf of" in email clients)
* -return_path_domain {String} a custom domain to use for the messages's return-path
* -merge {Boolean} whether to evaluate merge tags in the message. Will automatically be set to true if either merge_vars or global_merge_vars are provided.
* -merge_language {String} the merge tag language to use when evaluating merge tags, either mailchimp or handlebars
* -global_merge_vars {Array} global merge variables to use for all recipients. You can override these per recipient.
* -global_merge_vars[] {Object} a single global merge variable
* -name {String} the global merge variable's name. Merge variable names are case-insensitive and may not start with _
* -content {Mixed} the global merge variable's content
* -merge_vars {Array} per-recipient merge variables, which override global merge variables with the same name.
* -merge_vars[] {Object} per-recipient merge variables
* -rcpt {String} the email address of the recipient that the merge variables should apply to
* -vars {Array} the recipient's merge variables
* -vars[] {Object} a single merge variable
* -name {String} the merge variable's name. Merge variable names are case-insensitive and may not start with _
* -content {Mixed} the merge variable's content
* -tags {Array} an array of string to tag the message with. Stats are accumulated using tags, though we only store the first 100 we see, so this should not be unique or change frequently. Tags should be 50 characters or less. Any tags starting with an underscore are reserved for internal use and will cause errors.
* -tags[] {String} a single tag - must not start with an underscore
* -subaccount {String} the unique id of a subaccount for this message - must already exist or will fail with an error
* -google_analytics_domains {Array} an array of strings indicating for which any matching URLs will automatically have Google Analytics parameters appended to their query string automatically.
* -google_analytics_campaign {Array|string} optional string indicating the value to set for the utm_campaign tracking parameter. If this isn't provided the email's from address will be used instead.
* -metadata {Array} metadata an associative array of user metadata. Mandrill will store this metadata and make it available for retrieval. In addition, you can select up to 10 metadata fields to index and make searchable using the Mandrill search api.
* -recipient_metadata {Array} Per-recipient metadata that will override the global values specified in the metadata parameter.
* -recipient_metadata[] {Object} metadata for a single recipient
* -rcpt {String} the email address of the recipient that the metadata is associated with
* -values {Array} an associated array containing the recipient's unique metadata. If a key exists in both the per-recipient metadata and the global metadata, the per-recipient metadata will be used.
* -attachments {Array} an array of supported attachments to add to the message
* -attachments[] {Object} a single supported attachment
* -type {String} the MIME type of the attachment
* -name {String} the file name of the attachment
* -content {String} the content of the attachment as a base64-encoded string
* -images {Array} an array of embedded images to add to the message
* -images[] {Object} a single embedded image
* -type {String} the MIME type of the image - must start with "image/"
* -name {String} the Content ID of the image - use <img src="cid:THIS_VALUE"> to reference the image in your HTML content
* -content {String} the content of the image as a base64-encoded string
* @option params {Boolean} async enable a background sending mode that is optimized for bulk sending. In async mode, messages/send will immediately return a status of "queued" for every recipient. To handle rejections when sending in async mode, set up a webhook for the 'reject' event. Defaults to false for messages with no more than 10 recipients; messages with more than 10 recipients are always sent asynchronously, regardless of the value of async.
* @option params {String} ip_pool the name of the dedicated ip pool that should be used to send the message. If you do not have any dedicated IPs, this parameter has no effect. If you specify a pool that does not exist, your default pool will be used instead.
* @option params {String} send_at when this message should be sent as a UTC timestamp in YYYY-MM-DD HH:MM:SS format. If you specify a time in the past, the message will be sent immediately. An additional fee applies for scheduled email, and this feature is only available to accounts with a positive balance.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
send(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Send a new transactional message through Mandrill using a template
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} template_name the immutable name or slug of a template that exists in the user's account. For backwards-compatibility, the template name may also be used but the immutable slug is preferred.
* @option params {Array} template_content an array of template content to send. Each item in the array should be a struct with two keys - name: the name of the content block to set the content for, and content: the actual content to put into the block
* -template_content[] {Object} the injection of a single piece of content into a single editable region
* -name {String} the name of the mc:edit editable region to inject into
* -content {String} the content to inject
* @option params {Struct} message the other information on the message to send - same as /messages/send, but without the html content
* -html {String} optional full HTML content to be sent if not in template
* -text {String} optional full text content to be sent
* -subject {String} the message subject
* -from_email {String} the sender email address.
* -from_name {String} optional from name to be used
* -to {Array} an array of recipient information.
* -to[] {Object} a single recipient's information.
* -email {String} the email address of the recipient
* -name {String} the optional display name to use for the recipient
* -type {String} the header type to use for the recipient, defaults to "to" if not provided
* -headers {Object} optional extra headers to add to the message (most headers are allowed)
* -important {Boolean} whether or not this message is important, and should be delivered ahead of non-important messages
* -track_opens {Boolean} whether or not to turn on open tracking for the message
* -track_clicks {Boolean} whether or not to turn on click tracking for the message
* -auto_text {Boolean} whether or not to automatically generate a text part for messages that are not given text
* -auto_html {Boolean} whether or not to automatically generate an HTML part for messages that are not given HTML
* -inline_css {Boolean} whether or not to automatically inline all CSS styles provided in the message HTML - only for HTML documents less than 256KB in size
* -url_strip_qs {Boolean} whether or not to strip the query string from URLs when aggregating tracked URL data
* -preserve_recipients {Boolean} whether or not to expose all recipients in to "To" header for each email
* -view_content_link {Boolean} set to false to remove content logging for sensitive emails
* -bcc_address {String} an optional address to receive an exact copy of each recipient's email
* -tracking_domain {String} a custom domain to use for tracking opens and clicks instead of mandrillapp.com
* -signing_domain {String} a custom domain to use for SPF/DKIM signing instead of mandrill (for "via" or "on behalf of" in email clients)
* -return_path_domain {String} a custom domain to use for the messages's return-path
* -merge {Boolean} whether to evaluate merge tags in the message. Will automatically be set to true if either merge_vars or global_merge_vars are provided.
* -merge_language {String} the merge tag language to use when evaluating merge tags, either mailchimp or handlebars
* -global_merge_vars {Array} global merge variables to use for all recipients. You can override these per recipient.
* -global_merge_vars[] {Object} a single global merge variable
* -name {String} the global merge variable's name. Merge variable names are case-insensitive and may not start with _
* -content {Mixed} the global merge variable's content
* -merge_vars {Array} per-recipient merge variables, which override global merge variables with the same name.
* -merge_vars[] {Object} per-recipient merge variables
* -rcpt {String} the email address of the recipient that the merge variables should apply to
* -vars {Array} the recipient's merge variables
* -vars[] {Object} a single merge variable
* -name {String} the merge variable's name. Merge variable names are case-insensitive and may not start with _
* -content {Mixed} the merge variable's content
* -tags {Array} an array of string to tag the message with. Stats are accumulated using tags, though we only store the first 100 we see, so this should not be unique or change frequently. Tags should be 50 characters or less. Any tags starting with an underscore are reserved for internal use and will cause errors.
* -tags[] {String} a single tag - must not start with an underscore
* -subaccount {String} the unique id of a subaccount for this message - must already exist or will fail with an error
* -google_analytics_domains {Array} an array of strings indicating for which any matching URLs will automatically have Google Analytics parameters appended to their query string automatically.
* -google_analytics_campaign {Array|string} optional string indicating the value to set for the utm_campaign tracking parameter. If this isn't provided the email's from address will be used instead.
* -metadata {Array} metadata an associative array of user metadata. Mandrill will store this metadata and make it available for retrieval. In addition, you can select up to 10 metadata fields to index and make searchable using the Mandrill search api.
* -recipient_metadata {Array} Per-recipient metadata that will override the global values specified in the metadata parameter.
* -recipient_metadata[] {Object} metadata for a single recipient
* -rcpt {String} the email address of the recipient that the metadata is associated with
* -values {Array} an associated array containing the recipient's unique metadata. If a key exists in both the per-recipient metadata and the global metadata, the per-recipient metadata will be used.
* -attachments {Array} an array of supported attachments to add to the message
* -attachments[] {Object} a single supported attachment
* -type {String} the MIME type of the attachment
* -name {String} the file name of the attachment
* -content {String} the content of the attachment as a base64-encoded string
* -images {Array} an array of embedded images to add to the message
* -images[] {Object} a single embedded image
* -type {String} the MIME type of the image - must start with "image/"
* -name {String} the Content ID of the image - use <img src="cid:THIS_VALUE"> to reference the image in your HTML content
* -content {String} the content of the image as a base64-encoded string
* @option params {Boolean} async enable a background sending mode that is optimized for bulk sending. In async mode, messages/send will immediately return a status of "queued" for every recipient. To handle rejections when sending in async mode, set up a webhook for the 'reject' event. Defaults to false for messages with no more than 10 recipients; messages with more than 10 recipients are always sent asynchronously, regardless of the value of async.
* @option params {String} ip_pool the name of the dedicated ip pool that should be used to send the message. If you do not have any dedicated IPs, this parameter has no effect. If you specify a pool that does not exist, your default pool will be used instead.
* @option params {String} send_at when this message should be sent as a UTC timestamp in YYYY-MM-DD HH:MM:SS format. If you specify a time in the past, the message will be sent immediately. An additional fee applies for scheduled email, and this feature is only available to accounts with a positive balance.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
sendTemplate(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Search recently sent messages and optionally narrow by date range, tags, senders, and API keys. If no date range is specified, results within the last 7 days are returned. This method may be called up to 20 times per minute. If you need the data more often, you can use <a href="/api/docs/messages.html#method=info">/messages/info.json</a> to get the information for a single message, or <a href="http://help.mandrill.com/entries/21738186-Introduction-to-Webhooks">webhooks</a> to push activity to your own application for querying.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} query <a href="http://help.mandrill.com/entries/22211902">search terms</a> to find matching messages
* @option params {String} date_from start date
* @option params {String} date_to end date
* @option params {Array} tags an array of tag names to narrow the search to, will return messages that contain ANY of the tags
* @option params {Array} senders an array of sender addresses to narrow the search to, will return messages sent by ANY of the senders
* @option params {Array} api_keys an array of API keys to narrow the search to, will return messages sent by ANY of the keys
* @option params {Integer} limit the maximum number of results to return, defaults to 100, 1000 is the maximum
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
search(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Search the content of recently sent messages and return the aggregated hourly stats for matching messages
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} query the search terms to find matching messages for
* @option params {String} date_from start date
* @option params {String} date_to end date
* @option params {Array} tags an array of tag names to narrow the search to, will return messages that contain ANY of the tags
* @option params {Array} senders an array of sender addresses to narrow the search to, will return messages sent by ANY of the senders
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
searchTimeSeries(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Get the information for a single recently sent message
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique id of the message to get - passed as the "_id" field in webhooks, send calls, or search calls
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Get the full content of a recently sent message
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique id of the message to get - passed as the "_id" field in webhooks, send calls, or search calls
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
content(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Parse the full MIME document for an email message, returning the content of the message broken into its constituent pieces
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} raw_message the full MIME document of an email message
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
parse(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Take a raw MIME document for a message, and send it exactly as if it were sent through Mandrill's SMTP servers
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} raw_message the full MIME document of an email message
* @option params {String|null} from_email optionally define the sender address - otherwise we'll use the address found in the provided headers
* @option params {String|null} from_name optionally define the sender alias
* @option params {Array|null} to optionally define the recipients to receive the message - otherwise we'll use the To, Cc, and Bcc headers provided in the document
* -to[] {String} the email address of the recipient
* @option params {Boolean} async enable a background sending mode that is optimized for bulk sending. In async mode, messages/sendRaw will immediately return a status of "queued" for every recipient. To handle rejections when sending in async mode, set up a webhook for the 'reject' event. Defaults to false for messages with no more than 10 recipients; messages with more than 10 recipients are always sent asynchronously, regardless of the value of async.
* @option params {String} ip_pool the name of the dedicated ip pool that should be used to send the message. If you do not have any dedicated IPs, this parameter has no effect. If you specify a pool that does not exist, your default pool will be used instead.
* @option params {String} send_at when this message should be sent as a UTC timestamp in YYYY-MM-DD HH:MM:SS format. If you specify a time in the past, the message will be sent immediately.
* @option params {String} return_path_domain a custom domain to use for the messages's return-path
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
sendRaw(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Queries your scheduled emails by sender or recipient, or both.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} to an optional recipient address to restrict results to
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
listScheduled(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Cancels a scheduled email.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id a scheduled email id, as returned by any of the messages/send calls or messages/list-scheduled
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
cancelScheduled(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Reschedules a scheduled email.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id a scheduled email id, as returned by any of the messages/send calls or messages/list-scheduled
* @option params {String} send_at the new UTC timestamp when the message should sent. Mandrill can't time travel, so if you specify a time in past the message will be sent immediately
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
reschedule(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Whitelists {
constructor(master: Mandrill);
/**
* Adds an email to your email rejection whitelist. If the address is
* currently on your blacklist, that blacklist entry will be removed
* automatically.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email an email address to add to the whitelist
* @option params {String} comment an optional description of why the email was whitelisted
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
add(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Retrieves your email rejection whitelist. You can provide an email
* address or search prefix to limit the results. Returns up to 1000 results.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email an optional email address or prefix to search by
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Removes an email address from the whitelist.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} email the email address to remove from the whitelist
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Ips {
constructor(master: Mandrill);
/**
* Lists your dedicated IPs.
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Retrieves information about a single dedicated ip.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated IP address
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Requests an additional dedicated IP for your account. Accounts may
* have one outstanding request at any time, and provisioning requests
* are processed within 24 hours.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {Boolean} warmup whether to enable warmup mode for the ip
* @option params {String} pool the id of the pool to add the dedicated ip to, or null to use your account's default pool
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
provision(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Begins the warmup process for a dedicated IP. During the warmup process,
* Mandrill will gradually increase the percentage of your mail that is sent over
* the warming-up IP, over a period of roughly 30 days. The rest of your mail
* will be sent over shared IPs or other dedicated IPs in the same pool.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated ip address
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
startWarmup(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Cancels the warmup process for a dedicated IP.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated ip address
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
cancelWarmup(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Moves a dedicated IP to a different pool.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated ip address
* @option params {String} pool the name of the new pool to add the dedicated ip to
* @option params {Boolean} create_pool whether to create the pool if it does not exist; if false and the pool does not exist, an Unknown_Pool will be thrown.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
setPool(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Deletes a dedicated IP. This is permanent and cannot be undone.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip the dedicated ip to remove from your account
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Lists your dedicated IP pools.
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
listPools(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Describes a single dedicated IP pool.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} pool a pool name
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
poolInfo(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Creates a pool and returns it. If a pool already exists with this
* name, no action will be performed.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} pool the name of a pool to create
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
createPool(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Deletes a pool. A pool must be empty before you can delete it, and you cannot delete your default pool.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} pool the name of the pool to delete
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
deletePool(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Tests whether a domain name is valid for use as the custom reverse
* DNS for a dedicated IP.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated ip address
* @option params {String} domain the domain name to test
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
checkCustomDns(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Configures the custom DNS name for a dedicated IP.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} ip a dedicated ip address
* @option params {String} domain a domain name to set as the dedicated IP's custom dns name.
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
setCustomDns(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Internal {
constructor(master: Mandrill);
}
export class Subaccounts {
constructor(master: Mandrill);
/**
* Get the list of subaccounts defined for the account, optionally filtered by a prefix
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} q an optional prefix to filter the subaccounts' ids and names
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Add a new subaccount
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id a unique identifier for the subaccount to be used in sending calls
* @option params {String} name an optional display name to further identify the subaccount
* @option params {String} notes optional extra text to associate with the subaccount
* @option params {Integer} custom_quota an optional manual hourly quota for the subaccount. If not specified, Mandrill will manage this based on reputation
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
add(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Given the ID of an existing subaccount, return the data about it
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of the subaccount to query
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
info(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Update an existing subaccount
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of the subaccount to update
* @option params {String} name an optional display name to further identify the subaccount
* @option params {String} notes optional extra text to associate with the subaccount
* @option params {Integer} custom_quota an optional manual hourly quota for the subaccount. If not specified, Mandrill will manage this based on reputation
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
update(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Delete an existing subaccount. Any email related to the subaccount will be saved, but stats will be removed and any future sending calls to this subaccount will fail.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of the subaccount to delete
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
delete(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Pause a subaccount's sending. Any future emails delivered to this subaccount will be queued for a maximum of 3 days until the subaccount is resumed.
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of the subaccount to pause
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
pause(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Resume a paused subaccount's sending
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} id the unique identifier of the subaccount to resume
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
resume(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
}
export class Urls {
constructor(master: Mandrill);
/**
* Get the 100 most clicked URLs
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
list(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the 100 most clicked URLs that match the search query given
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} q a search query
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
search(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Return the recent history (hourly stats for the last 30 days) for a url
* @param {Object} params the hash of the parameters to pass to the request
* @option params {String} url an existing URL
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
timeSeries(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Get the list of tracking domains set up for this account
* @param {Object} params the hash of the parameters to pass to the request
* @param {Function} onsuccess an optional callback to execute when the API call is successfully made
* @param {Function} onerror an optional callback to execute when the API call errors out - defaults to throwing the error as an exception
*/
trackingDomains(params: any, onsuccess?: ICallback, onerror?: ICallback): void;
/**
* Add a tracking domain to your account