forked from sendgrid/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
redirects.js
4538 lines (4538 loc) · 151 KB
/
redirects.js
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
module.exports = [
{
from: '/User_Guide/Transactional_Templates/how_to_send_an_email_with_transactional_templates.html',
to: '/ui/sending-email/how-to-send-an-email-with-dynamic-transactional-templates/',
},
{
from: '/Integrate/Partners/account-migration.html',
to: '/for-developers/partners/account-migration/',
},
{
from: '/docs/API_Reference/SMTP_API/',
to: '/for-developers/sending-email/getting-started-smtp/',
},
{
from: '/API_Reference/Webhooks/',
to: '/for-developers/tracking-events/event/',
},
{
from: '/API_Reference/Customer_Subuser_API/automatic_login.html',
to: '/API_Reference/Customer_Subuser_API/index.html',
},
{
from: '/API_Reference/Customer_Subuser_API/event_notification_url.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/event_notification_url.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/automatic_login.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Web_API/Customer_Subuser_API/multi_cred.html',
to: '/API_Reference/Web_API_v3/teammates.html',
},
{
from: '/API_Reference/Marketing_Emails_API/categories.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/categories.html',
},
{
from: '/API_Reference/Marketing_Emails_API/emails.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/emails.html',
},
{
from: '/API_Reference/Marketing_Emails_API/lists.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/lists.html',
},
{
from: '/API_Reference/Marketing_Emails_API/index.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/index.html',
},
{
from: '/API_Reference/Marketing_Emails_API/newsletters.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/newsletters.html',
},
{
from: '/API_Reference/Marketing_Emails_API/recipients.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/recipients.html',
},
{
from: '/API_Reference/Marketing_Emails_API/schedule.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/schedule.html',
},
{
from: '/API_Reference/Marketing_Emails_API/sender_address.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/sender_address.html',
},
{
from: '/API_Reference/Marketing_Emails_API/variations.html',
to: '/API_Reference/Web_API/Legacy_Features/Marketing_Emails_API/variations.html',
},
{
from: '/API_Reference/Customer_Subuser_API/account_limits.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/account_limits.html',
},
{
from: '/API_Reference/Customer_Subuser_API/apps.html',
to: '/for-developers/sending-email/smtp-filters.html',
},
{
from: '/API_Reference/Customer_Subuser_API/authenticate_a_subuser.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/authenticate_a_subuser.html',
},
{
from: '/API_Reference/Customer_Subuser_API/index.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/index.html',
},
{
from: '/API_Reference/Customer_Subuser_API/invalid_emails.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/invalid_emails.html',
},
{
from: '/API_Reference/Customer_Subuser_API/ip_management.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/ip_management.html',
},
{
from: '/API_Reference/Customer_Subuser_API/monitor_records.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/monitor_records.html',
},
{
from: '/API_Reference/Customer_Subuser_API/parse_settings.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/parse_settings.html',
},
{
from: '/API_Reference/Customer_Subuser_API/statistics.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/statistics.html',
},
{
from: '/API_Reference/Customer_Subuser_API/subuser_bounces.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/subuser_bounces.html',
},
{
from: '/API_Reference/Customer_Subuser_API/subuser_spam_reports.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/subuser_spam_reports.html',
},
{
from: '/API_Reference/Customer_Subuser_API/subuser_unsubscribes.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/subuser_unsubscribes.html',
},
{
from: '/API_Reference/Customer_Subuser_API/subusers.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/subusers.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/event_notification_url.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/event_notification_url.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/index.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/invalid_emails.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/invalid_emails.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/subuser_bounces.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/subuser_bounces.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/subuser_spam_reports.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/subuser_spam_reports.html',
},
{
from: '/API_Reference/Customer_Subuser_API/v1_(deprecated)/subuser_unsubscribes.html',
to: '/API_Reference/Web_API/Legacy_Features/Customer_Subuser_API/v1_(deprecated)/subuser_unsubscribes.html',
},
{
from: '/API_Reference/Customer_Subuser_API/whitelabel.html',
to: '/API_Reference/Web_API/Customer_Subuser_API/whitelabel.html',
},
{
from: '/API_Reference/Reseller_API/account_overview.html',
to: '/API_Reference/Web_API/Reseller_API/account_overview.html',
},
{
from: '/API_Reference/Reseller_API/apps.html',
to: '/for-developers/sending-email/smtp-filters.html',
},
{
from: '/API_Reference/Reseller_API/authenticate_a_customer_subuser.html',
to: '/API_Reference/Web_API/Reseller_API/authenticate_a_customer_subuser.html',
},
{
from: '/API_Reference/Reseller_API/authenticate_a_customer.html',
to: '/API_Reference/Web_API/Reseller_API/authenticate_a_customer.html',
},
{
from: '/API_Reference/Reseller_API/automatic_login.html',
to: '/API_Reference/Web_API/Reseller_API/index.html',
},
{
from: '/API_Reference/Reseller_API/billing_retrieving_as_you_go_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/billing_retrieving_as_you_go_usage.html',
},
{
from: '/API_Reference/Reseller_API/billing_retrieving_end_users_invoices_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/billing_retrieving_end_users_invoices_usage.html',
},
{
from: '/API_Reference/Reseller_API/customer_account_limits.html',
to: '/API_Reference/Web_API/Reseller_API/customer_account_limits.html',
},
{
from: '/API_Reference/Reseller_API/customer_bounces.html',
to: '/API_Reference/Web_API/Reseller_API/customer_bounces.html',
},
{
from: '/API_Reference/Reseller_API/customer_invalid_emails.html',
to: '/API_Reference/Web_API/Reseller_API/customer_invalid_emails.html',
},
{
from: '/API_Reference/Reseller_API/customer_management.html',
to: '/API_Reference/Web_API/Reseller_API/customer_management.html',
},
{
from: '/API_Reference/Reseller_API/customer_spam_reports.html',
to: '/API_Reference/Web_API/Reseller_API/customer_spam_reports.html',
},
{
from: '/API_Reference/Reseller_API/customer_statistics.html',
to: '/API_Reference/Web_API/Reseller_API/customer_statistics.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_account_limits.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_account_limits.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_apps.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_apps_filters.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_automatic_login.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_bounces.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_bounces.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_event_notification_url.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_event_notification_url.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_invalid_emails.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_invalid_emails.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_monitor_outgoing_email.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_monitor_outgoing_email.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_parse_settings.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_parse_settings.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_spam_reports.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_spam_reports.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_statistics.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_statistics.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_timezone.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_timezone.html',
},
{
from: '/API_Reference/Reseller_API/customer_subuser_unsubscribes.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_unsubscribes.html',
},
{
from: '/API_Reference/Reseller_API/customer_timezone.html',
to: '/API_Reference/Web_API/Reseller_API/customer_timezone.html',
},
{
from: '/API_Reference/Reseller_API/customer_unsubscribes.html',
to: '/API_Reference/Web_API/Reseller_API/customer_unsubscribes.html',
},
{
from: '/API_Reference/Reseller_API/event_notification_url.html',
to: '/API_Reference/Web_API/Reseller_API/event_notification_url.html',
},
{
from: '/API_Reference/Reseller_API/index.html',
to: '/API_Reference/Web_API/Reseller_API/index.html',
},
{
from: '/API_Reference/Reseller_API/invoice_retrieval.html',
to: '/API_Reference/Web_API/Reseller_API/invoice_retrieval.html',
},
{
from: '/API_Reference/Reseller_API/ip_management.html',
to: '/API_Reference/Web_API/Reseller_API/ip_management.html',
},
{
from: '/API_Reference/Reseller_API/monitor_records.html',
to: '/API_Reference/Web_API/Reseller_API/monitor_records.html',
},
{
from: '/API_Reference/Reseller_API/multiple_credentials.html',
to: '/API_Reference/Web_API/Reseller_API/multiple_credentials.html',
},
{
from: '/API_Reference/Reseller_API/parse_settings.html',
to: '/API_Reference/Web_API/Reseller_API/parse_settings.html',
},
{
from: '/API_Reference/Reseller_API/pending_account_changes.html',
to: '/API_Reference/Web_API/Reseller_API/pending_account_changes.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_account_limits.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_account_limits.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_apps.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_apps.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_automatic_login.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/index.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_bounces.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_bounces.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_event_notification_url.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_event_notification_url.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_invalid_emails.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_invalid_emails.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_monitor_outgoing_email.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_monitor_outgoing_email.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_parse_settings.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_parse_settings.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_spam_reports.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_spam_reports.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_statistics.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_statistics.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_timezone.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_timezone.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_unsubscribes.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_unsubscribes.html',
},
{
from: '/API_Reference/Reseller_API/Reseller_Customer_Subuser_API/index.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/index',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/account_overview.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/account_overview.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/apps.html',
to: '/for-developers/sending-email/smtp-filters.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/authenticate_a_customer_subuser.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/authenticate_a_customer_subuser.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/authenticate_a_customer.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/authenticate_a_customer.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/automatic_login.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/billing_retrieving_as_you_go_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/billing_retrieving_as_you_go_usage.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/billing_retrieving_end_users_invoices_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/billing_retrieving_end_users_invoices_usage.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/billing.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/billing.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_account_limits.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_account_limits.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_bounces.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_bounces.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_invalid_emails.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_invalid_emails.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_management.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_management.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_spam_reports.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_spam_reports.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_statistics.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_statistics.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_account_limits.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_account_limits.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_apps_filters.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_apps_filters.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_automatic_login.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_bounces.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_bounces.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_event_notification_url.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_event_notification_url.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_invalid_emails.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_invalid_emails.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_monitor_outgoing_email.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_monitor_outgoing_email.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_parse_settings.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_parse_settings.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_spam_reports.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_spam_reports.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_statistics.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_statistics.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_subuser_unsubscribes.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_subuser_unsubscribes.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/customer_unsubscribes.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/customer_unsubscribes.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/event_notification_url.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/event_notification_url.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/index.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/invoice_retrieval.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/invoice_retrieval.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/ip_management.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/ip_management.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/monitor_records.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/monitor_records.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/parse_settings.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/parse_settings.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/pending_account_changes.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/pending_account_changes.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/view_available_packages.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/view_available_packages.html',
},
{
from: '/API_Reference/Reseller_API/v1_(deprecated)/whitelabel.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/whitelabel.html',
},
{
from: '/API_Reference/Reseller_API/v2_(deprecated)/billing_retrieving_as_you_go_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v2_(deprecated)/billing_retrieving_as_you_go_usage.html',
},
{
from: '/API_Reference/Reseller_API/v2_(deprecated)/billing_retrieving_end_users_invoices_usage.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v2_(deprecated)/billing_retrieving_end_users_invoices_usage.html',
},
{
from: '/API_Reference/Reseller_API/v2_(deprecated)/index.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v2_(deprecated)/index.html',
},
{
from: '/API_Reference/Reseller_API/view_available_packages.html',
to: '/API_Reference/Web_API/Reseller_API/view_available_packages.html',
},
{
from: '/API_Reference/Reseller_API/whitelabel.html',
to: '/API_Reference/Web_API/Reseller_API/whitelabel.html',
},
{
from: '/API_Reference/Reseller_Haiku_API/customer_change.html',
to: '/API_Reference/Web_API/Reseller_Haiku_API/customer_change.html',
},
{
from: '/API_Reference/Reseller_Haiku_API/customer_deprovision.html',
to: '/API_Reference/Web_API/Reseller_Haiku_API/customer_deprovision.html',
},
{
from: '/API_Reference/Reseller_Haiku_API/customer_provision.html',
to: '/API_Reference/Web_API/Reseller_Haiku_API/customer_provision.html',
},
{
from: '/API_Reference/Reseller_Haiku_API/customer_sso.html',
to: '/API_Reference/Web_API/Reseller_Haiku_API/customer_sso.html',
},
{
from: '/API_Reference/Reseller_Haiku_API/index.html',
to: '/API_Reference/Web_API/Reseller_Haiku_API/index.html',
},
{
from: '/API_Reference/Template_Engine_API/index.html',
to: '/API_Reference/Web_API_v3/Transactional_Templates/index.html',
},
{
from: '/API_Reference/Template_Engine_API/templates.html',
to: '/API_Reference/Web_API_v3/Transactional_Templates/templates.html',
},
{
from: '/API_Reference/Template_Engine_API/versions.html',
to: '/API_Reference/Web_API_v3/Transactional_Templates/versions.html',
},
{
from: '/API_Reference/Template_Engine_API/smtpapi.html',
to: '/API_Reference/Web_API_v3/Transactional_Templates/smtpapi.html',
},
{
from: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/automatic_login.html',
to: '/API_Reference/Web_API/Legacy_Features/Reseller_API/v1_(deprecated)/index.html',
},
{
from: '/API_Reference/Web_API/Reseller_API/automatic_login.html',
to: '/API_Reference/Web_API/Reseller_API/index.html',
},
{
from: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/customer_subuser_automatic_login.html',
to: '/API_Reference/Web_API/Reseller_API/Reseller_Customer_Subuser_API/index.html',
},
{
from: '/API_Reference/Web_API_v3/cancel_scheduled_send.html',
to: '/API_Reference/Web_API_v3/index.html',
},
{
from: '/API_Reference/Web_API_v3/event_activity.html',
to: '/API_Reference/Web_API_v3/index.html',
},
{
from: '/API_Reference/Web_API_v3/Advanced_Suppression_Manager/index.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/index.html',
},
{
from: '/API_Reference/Web_API_v3/Advanced_Suppression_Manager/global_suppressions.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/global_suppressions.html',
},
{
from: '/API_Reference/Web_API_v3/Advanced_Suppression_Manager/groups.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/groups.html',
},
{
from: '/API_Reference/Web_API_v3/Advanced_Suppression_Manager/suppressions.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/suppressions.html',
},
{
from: '/API_Reference/Web_API_v3/IP_Management/ip_warmup_schedule.html',
to: '/ui/account-and-settings/dedicated_ip_addresses/',
},
{
from: '/API_Reference/Web_API_v3/Mail/overview.html',
to: '/API_Reference/Web_API_v3/Mail/index.html',
},
{
from: '/API_Reference/Web_API/parse_settings.html',
to: '/API_Reference/Web_API_v3/Webhooks/parse.html',
},
{
from: '/API_Reference/Web_API_v3/Unsubscribe_Manager/global_unsubscribes.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/global_unsubscribes.html',
},
{
from: '/API_Reference/Web_API_v3/Unsubscribe_Manager/groups.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/groups.html',
},
{
from: '/API_Reference/Web_API_v3/Unsubscribe_Manager/index.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/index.html',
},
{
from: '/API_Reference/Web_API_v3/Unsubscribe_Manager/unsubscribes.html',
to: '/API_Reference/Web_API_v3/Suppression_Management/unsubscribes.html',
},
{
from: '/API_Reference/Webhooks/parse.html',
to: '/API_Reference/Webhooks/inbound_email.html',
},
{
from: '/API_Reference/SMTP_API/smtpapi_validator.html',
to: '/API_Reference/SMTP_API/index.html',
},
{
from: '/Apps/index.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Apps/address_whitelisting.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/bcc.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/bypass_list_management.html',
to: '/ui/account-and-settings/mail/ ',
},
{
from: '/Apps/click_tracking.html',
to: '/ui/account-and-settings/tracking/ ',
},
{
from: '/Apps/domain_keys.html',
to: '/ui/account-and-settings/how-to-set-up-domain-authentication/ ',
},
{
from: '/Apps/dkim.html',
to: '/ui/account-and-settings/how-to-set-up-domain-authentication/ ',
},
{
from: '/Apps/email_templates.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/event_notification.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/footer.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/forward_spam.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/google_analytics.html',
to: '/ui/account-and-settings/tracking/ ',
},
{
from: '/Apps/gravatar.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Apps/new_relic.html',
to: '/ui/account-and-settings/partners/',
},
{
from: '/Apps/open_tracking.html',
to: '/ui/account-and-settings/tracking/ ',
},
{
from: '/Apps/return_path_seedlist.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Apps/sendwithus.html',
to: '/ui/account-and-settings/partners/',
},
{
from: '/Apps/spam_checker.html',
to: '/ui/account-and-settings/mail/',
},
{
from: '/Apps/subscription_tracking.html',
to: '/ui/account-and-settings/tracking/ ',
},
{
from: '/Apps/template_engine.html',
to: '/ui/sending-mail/create-and-edit-transactional-templates/',
},
{
from: '/Code_Examples/index.html',
to: '/for-developers/',
},
{
from: '/Code_Examples/csharp.html',
to: '/for-developers/sending-email/v3-csharp-code-example/',
},
{
from: '/Code_Examples/go.html',
to: '/for-developers/sending-email/v3-go-code-example/',
},
{
from: '/Code_Examples/ios.html',
to: '/for-developers/',
},
{
from: '/Code_Examples/java.html',
to: '/for-developers/sending-email/v3-java-code-example/',
},
{
from: '/Code_Examples/nodejs.html',
to: '/for-developers/sending-email/v3-nodejs-code-example/',
},
{
from: '/Code_Examples/perl.html',
to: '/for-developers/sending-email/v2-perl-code-example/',
},
{
from: '/Code_Examples/php.html',
to: '/for-developers/sending-email/v3-php-code-example/',
},
{
from: '/Code_Examples/python.html',
to: '/for-developers/sending-email/smtp-python-code-example/',
},
{
from: '/Code_Examples/ruby.html',
to: '/for-developers/sending-email/v3-ruby-code-example/',
},
{
from: '/Code_Examples/Webhook_Examples/index.html',
to: '/for-developers/tracking-events/',
},
{
from: '/Code_Examples/Webhook_Examples/go.html',
to: '/for-developers/tracking-events/go-code-example/',
},
{
from: '/Code_Examples/Webhook_Examples/nodejs.html',
to: '/for-developers/tracking-events/nodejs-code-example/',
},
{
from: '/Code_Examples/Webhook_Examples/php.html',
to: '/for-developers/tracking-events/php-code-example/',
},
{
from: '/Code_Examples/Webhook_Examples/python.html',
to: '/for-developers/tracking-events/python-code-example/',
},
{
from: '/Code_Examples/Webhook_Examples/csharp.html',
to: '/for-developers/tracking-events/csharp-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/index.html',
to: '/for-developers/sending-email/building-an-smtp-email/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/go.html',
to: '/for-developers/sending-email/smtp-go-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/nodejs.html',
to: '/for-developers/sending-email/smtp-nodejs-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/perl.html',
to: '/for-developers/sending-email/smtp-perl-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/php.html',
to: '/for-developers/sending-email/smtp-php-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/python.html',
to: '/for-developers/sending-email/smtp-python-code-example/',
},
{
from: '/Code_Examples/SMTP_API_Header_Examples/ruby.html',
to: '/docs/for-developers/sending-email/smtp-ruby-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/csharp.html',
to: '/for-developers/sending-email/v2-csharp-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/go.html',
to: '/for-developers/sending-email/v2-go-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/java.html',
to: '/for-developers/sending-email/v2-java-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/nodejs.html',
to: '/for-developers/sending-email/v2-nodejs-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/perl.html',
to: '/for-developers/sending-email/v2-perl-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/python.html',
to: '/for-developers/sending-email/v2-python-code-example/',
},
{
from: '/Integrate/Code_Examples/v2_Mail/ruby.html',
to: '/for-developers/sending-email/v2-ruby-code-example/',
},
{
from: '/Classroom/Basics/password.html',
to: '/ui/account-and-settings/resetting-your-username-and-password/',
},
{
from: '/Classroom/Deliver/warming_up_ips.html',
to: '/ui/sending-email/warming-up-an-ip-address/',
},
{
from: '/Classroom/Send/api_keys.html',
to: '/ui/account-and-settings/api-keys/',
},
{
from: '/Classroom/Deliver/Undeliverable_Email/how_sendgrid_handles_550_requested_action_not_taken_mailbox_unavailable_bounces.html',
to: '/ui/sending-email/smtp-errors-and-troubleshooting/',
},
{
from: '/Classroom/Troubleshooting/your_account_is_still_being_provisioned_you_may_not_be_able_to_send_emails.html',
to: '/Classroom/Troubleshooting/Account_Administration/your_account_is_still_being_provisioned_you_will_not_be_able_to_send_out_any_email/',
},
{
from: '/Classroom/Basics/Security/two_factor_authentication_faq.html',
to: '/ui/account-and-settings/two_factor_authentication/',
},
{
from: '/Classroom/Basics/a_sendgrid_user_is_spamming_me.html',
to: '/report-spam/',
},
{
from: '/Classroom/Basics/does_sendgrid_support_end_to_end_tls.html',
to: '/ui/sending-email/tls/',
},
{
from: '/Classroom/Basics/email_flow.html',
to: '/ui/sending-email/email-flow/',
},
{
from: '/Classroom/Basics/everything_about_dmarc.html',
to: '/ui/sending-email/dmarc/',
},
{
from: '/Classroom/Basics/link_shorteners.html',
to: '/ui/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/recommended_smtp_settings.html',
to: '/for-developers/sending-email/sending-email-smtp/',
},
{
from: '/Classroom/Basics/sendgrid_multiauth_multiple_account_credentials.html',
to: '/ui/account-and-settings/teammates/',
},
{
from: '/Classroom/Basics/sendgrid_oem_process.html',
to: '/ui/account-and-settings/subusers/',
},
{
from: '/Classroom/Basics/sending_practices.html',
to: '/ui/account-and-settings/billing/',
},
{
from: '/Classroom/Basics/smtp_ports.html',
to: '/for-developers/sending-email/sending-email-smtp/',
},
{
from: '/Classroom/Basics/ssl_vs_tls.html',
to: '/ui/sending-email/ssl-vs-tls/',
},
{
from: '/Classroom/Basics/tips_to_keep_your_list_organized.html',
to: '/ui/managing-contacts/managing-contact-list/',
},
{
from: '/Classroom/Basics/what_are_subusers.html',
to: '/ui/account-and-settings/subusers/',
},
{
from: '/Classroom/Basics/what_are_the_sendgrid_apis_and_what_do_they_do.html',
to: '/for-developers/sending-email/api-sending-email/',
},
{
from: '/Classroom/Basics/what_is_smtp.html',
to: '/for-developers/sending-email/sending-email-smtp/',
},
{
from: '/Classroom/Basics/what_is_the_difference_between_marketing_and_transactional_emails.html',
to: '/ui/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/where_can_i_enable_subscription_tracking.html',
to: '/ui/analytics-and-reporting/subuscription-tracking/',
},
{
from: '/Classroom/Basics/why_are_the_pro_plans_recommended_above_all_others.html',
to: '/pricing/',
},
{
from: '/Classroom/Basics/your_reputation_what_is_it.html',
to: '/blog/what-is-a-domain-reputation/',
},
{
from: '/Classroom/Basics/Security/setting_up_2_factor_authentication.html',
to: '/ui/account-and-settings/two-factor-authentication/',
},
{
from: '/Classroom/Basics/Account/adding_an_additional_dedicated_ip_to_your_account.html',
to: '/ui/account-and-settings/dedicated-ip-addresses/',
},
{
from: '/Classroom/Basics/Account/creating_multiple_user_credentials_for_sub_users.html',
to: '/ui/account-and-settings/teammates/',
},
{
from: '/Classroom/Basics/Account/im_a_multiple_credential_user_and_i_need_to_reset_my_password.html',
to: '/ui/account-and-settings/teammates/',
},
{
from: '/Classroom/Basics/Account/what_is_my_sending_originating_ip_address_with_sendgrid.html',
to: '/ui/account-and-settings/dedicated-ip-addresses/',
},
{
from: '/Classroom/Basics/Security/sendgrid_multiauth_multiple_account_credentials.html',
to: '/ui/account-and-settings/teammates/',
},
{
from: '/Classroom/Basics/Security/what_security_measures_are_available_with_sendgrid_accounts.html',
to: '/policies/security/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/migration_guide_part_1_migrating_your_recipient_lists_into_contacts.html',
to: '/ui/managing-contacts/create-and-manage-contacts/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/migration_guide_part_2_importing_your_unsubscribes.html',
to: '/ui/sending-email/index-suppressions/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/migration_guide_part_3_moving_your_content.html',
to: '/ui/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/Misc/where_can_i_enable_subscription_tracking.html',
to: '/ui/account-and-settings/tracking/#-Subscription-Tracking',
},
{
from: '/Classroom/Basics/marketing_campaigns_video_tutorials.html',
to: '/ui/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/remove_bounced_addresses.html',
to: '/ui/managing-contacts/managing-contact-list/',
},
{
from: '/Classroom/Basics/Account/account_sign_up_faq.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Classroom/Basics/Account/how_do_i_add_more_emails_to_my_account.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Classroom/Basics/Account/how_do_i_reset_my_password.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Classroom/Basics/Account/why_cant_I_reset_my_password_if_my_account_is_not_provisioned.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Classroom/Basics/index.html',
to: '/ui/account-and-settings/account/',
},
{
from: '/Classroom/Basics/Inbound_Parse_Webhook/setting_up_the_inbound_parse_webhook.html',
to: '/for-developers/parsing-email/setting-up-the-inbound-parse-webhook/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/index.html',
to: '/ui/account-and-settings/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/marketing_campaigns_faqs.html',
to: '/ui/account-and-settings/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/marketing_campaigns_faqs.html',
to: '/ui/account-and-settings/sending-email/how-to-send-email-with-marketing-campaigns/',
},
{
from: '/Classroom/Basics/Marketing_Campaigns/default_mc_tags.html',
to: '/ui/account-and-settings/sending-email/global-unsubscribes/',