-
Notifications
You must be signed in to change notification settings - Fork 1
/
swagger.yml
2481 lines (2476 loc) · 68.4 KB
/
swagger.yml
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
swagger: '2.0'
info:
title: Postmark API
description: |
Postmark makes sending and receiving email
incredibly easy.
version: 1.0.0
host: api.postmarkapp.com
basePath: /
produces:
- application/json
consumes:
- application/json
definitions:
DynamicResponse:
description: The properties of this object will vary based request parameters.
SendEmailRequest:
properties:
From:
description: The sender email address. Must have a registered and confirmed Sender Signature.
type: string
To:
description: Recipient email address. Multiple addresses are comma seperated. Max 50.
type: string
Cc:
description: Recipient email address. Multiple addresses are comma seperated. Max 50.
type: string
Bcc:
description: Bcc recipient email address. Multiple addresses are comma seperated. Max 50.
type: string
Subject:
description: Email Subject
type: string
Tag:
description: Email tag that allows you to categorize outgoing emails and get detailed statistics.
type: string
HtmlBody:
description: If no TextBody specified HTML email message
type: string
TextBody:
description: If no HtmlBody specified Plain text email message
type: string
ReplyTo:
description: Reply To override email address. Defaults to the Reply To set in the sender signature.
type: string
TrackOpens:
description: Activate open tracking for this email.
type: boolean
TrackLinks:
description: Replace links in content to enable "click tracking" stats. Default is 'null', which uses the server's LinkTracking setting'.
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
Headers:
$ref: '#/definitions/HeaderCollection'
Attachments:
$ref: '#/definitions/AttachmentCollection'
EmailWithTemplateRequest:
properties:
TemplateId:
type: integer
TemplateModel:
type: object
To:
type: string
From:
type: string
Bcc:
type: string
ReplyTo:
type: string
TrackLinks:
description: Replace links in content to enable "click tracking" stats. Default is 'null', which uses the server's LinkTracking setting'.
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
TrackOpens:
description: Activate open tracking for this email.
type: boolean
InlineCss:
type: boolean
default: true
EditServerConfigurationRequest:
properties:
Name:
type: string
Color:
type: string
enum: ['purple', 'blue', 'turqoise', 'green', 'red', 'yellow', 'grey']
RawEmailEnabled:
type: boolean
DeliveryHookUrl:
type: string
SmtpApiActivated:
type: boolean
InboundHookUrl:
type: string
BounceHookUrl:
type: string
OpenHookUrl:
type: string
PostFirstOpenOnly:
type: boolean
TrackOpens:
type: boolean
TrackLinks:
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
InboundDomain:
type: string
InboundSpamThreshold:
type: integer
SendEmailBatchRequest:
type: array
items:
$ref: '#/definitions/SendEmailRequest'
TemplateValidationRequest:
properties:
Subject:
type: string
description: |
The subject content to validate. Must be specified if HtmlBody or
TextBody are not. See our template language documentation for more
information on the syntax for this field.
HtmlBody:
type: string
description: |
The html body content to validate. Must be specified if Subject or
TextBody are not. See our template language documentation for more
information on the syntax for this field.
TextBody:
type: string
description: |
The text body content to validate. Must be specified if HtmlBody or
Subject are not. See our template language documentation for more
information on the syntax for this field.
TextRenderModel:
type: object
description: The model to be used when rendering test content.
InlineCssForHtmlTestRender:
type: boolean
default: true
description: |
When HtmlBody is specified, the test render will have style blocks
inlined as style attributes on matching html elements. You may disable
the css inlining behavior by passing false for this parameter.
EditTagTriggerRequest:
description: ''
properties:
MatchName:
type: string
TrackOpens:
type: boolean
CreateTemplateRequest:
description: The contents required for creating a new template.
properties:
Name:
type: string
description: The friendly display name for the template.
Subject:
type: string
description: The Subject template definition for this Template.
HtmlBody:
type: string
description: The HTML template definition for this Template.
TextBody:
type: string
description: The Text template definition for this Template.
required:
- Name
- Subject
EditTemplateRequest:
description: The contents required for creating a new template.
properties:
TemplateId:
type: integer
description: The ID for the template you wish to modify.
Name:
type: string
description: The friendly display name for the template.
Subject:
type: string
description: The Subject template definition for this Template.
HtmlBody:
type: string
description: The HTML template definition for this Template.
TextBody:
type: string
description: The Text template definition for this Template.
required:
- TemplateId
CreateInboundRuleRequest:
description: ''
properties:
Rule:
format: email
type: string
SentCountsResponse:
description: The result of a get sent counts operation.
properties:
Sent:
type: integer
Days:
type: array
items:
properties:
Date:
type: string
Sent:
type: integer
StandardPostmarkResponse:
description: 'A Postmark API error.'
properties:
ErrorCode:
type: integer
Message:
type: string
SendEmailResponse:
description: The standard response when a postmark message is sent
properties:
To:
type: string
SubmittedAt:
type: string
format: 'date-time'
MessageID:
type: string
ErrorCode:
type: integer
Message:
type: string
BounceActivationResponse:
properties:
Message:
type: string
Bounce:
$ref: '#/definitions/BounceInfoResponse'
ServerConfigurationResponse:
properties:
ID:
type: integer
Name:
type: string
ApiTokens:
type: array
items:
type: string
ServerLink:
type: string
Color:
type: string
enum: ['purple', 'blue', 'turqoise', 'green', 'red', 'yellow', 'grey']
InboundAddress:
type: string
format: email
RawEmailEnabled:
type: boolean
DeliveryHookUrl:
type: string
SmtpApiActivated:
type: boolean
InboundHookUrl:
type: string
BounceHookUrl:
type: string
OpenHookUrl:
type: string
PostFirstOpenOnly:
type: boolean
TrackOpens:
type: boolean
TrackLinks:
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
InboundDomain:
type: string
InboundHash:
type: string
InboundSpamThreshold:
type: integer
SendEmailBatchResponse:
type: array
items:
$ref: '#/definitions/SendEmailResponse'
DeliveryStatsResponse:
description: ''
properties:
InactiveMails:
type: integer
Bounces:
type: array
items:
$ref: '#/definitions/BounceCountElement'
BounceInfoResponse:
properties:
ID:
type: string
Type:
type: string
TypeCode:
type: integer
Name:
type: string
Tag:
type: string
MessageID:
type: string
Description:
type: string
Details:
type: string
Email:
type: string
format: email
BouncedAt:
type: string
format: 'date-time'
DumpAvailable:
type: boolean
Inactive:
type: boolean
CanActivate:
type: boolean
Subject:
type: string
Content:
type: string
BounceSearchResponse:
description: ''
properties:
TotalCount:
type: integer
Bounces:
type: array
items:
$ref: '#/definitions/BounceInfoResponse'
BounceDumpResponse:
properties:
Body:
description: Raw source of bounce. If no dump is available this will return an empty string.
type: string
OutboundMessageDumpResponse:
properties:
Body:
description: Raw source of message. If no dump is available this will return an empty string.
type: string
TemplateRecordResponse:
properties:
Name:
type: string
description: The display name for this template.
TemplateId:
type: number
format: int
description: The associated ID for this template.
Active:
type: boolean
description: True if this template is currently available for use.
TemplateValidationResponse:
properties:
AllContentIsValid:
type: boolean
TextBody:
$ref: '#/definitions/TemplateValidationResult'
HtmlBody:
$ref: '#/definitions/TemplateValidationResult'
Subject:
$ref: '#/definitions/TemplateValidationResult'
SuggestedTemplateModel:
type: object
TemplateListingResponse:
properties:
TotalCount:
type: number
description: The total number of Templates API associated with this server.
Templates API:
type: array
items:
$ref: '#/definitions/TemplateRecordResponse'
description: Basic information for each Template returned from the query.
InboundMessageFullDetailsResponse:
properties:
From:
type: string
FromName:
type: string
FromFull:
description: ''
properties:
Email:
type: string
Name:
type: string
To:
type: string
ToFull:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Cc:
type: string
CcFull:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
ReplyTo:
type: string
OriginalRecipient:
type: string
Subject:
type: string
Date:
type: string
MailboxHash:
type: string
TextBody:
type: string
HtmlBody:
type: string
Tag:
type: string
Headers:
$ref: '#/definitions/HeaderCollection'
Attachments:
$ref: '#/definitions/AttachmentCollection'
MessageID:
type: string
BlockedReason:
type: string
Status:
type: string
InboundSearchResponse:
description: ''
properties:
TotalCount:
type: integer
InboundMessages:
type: array
items:
$ref: '#/definitions/InboundMessageDetail'
OutboundSearchResponse:
description: ''
properties:
TotalCount:
type: integer
Messages:
type: array
items:
$ref: '#/definitions/OutboundMessageDetail'
TemplateDetailResponse:
properties:
Name:
type: string
description: The display name for the template.
TemplateID:
type: integer
description: The ID associated with the template.
HtmlBody:
type: string
description: The content to use for the HtmlBody when this template is used to send email.
TextBody:
type: string
description: The content to use for the TextBody when this template is used to send email.
AssociatedServerId:
type: integer
description: The ID of the Server with which this template is associated.
Subject:
type: string
description: The content to use for the Subject when this template is used to send email.
Active:
type: boolean
description: Indicates that this template may be used for sending email.
OutboundMessageDetailsResponse:
properties:
TextBody:
type: string
HtmlBody:
type: string
Body:
type: string
Tag:
type: string
MessageID:
type: string
To:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Cc:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Bcc:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Recipients:
type: array
items:
type: string
ReceivedAt:
type: string
format: 'date-time'
From:
type: string
Subject:
type: string
Attachments:
$ref: '#/definitions/AttachmentCollection'
Status:
type: string
TrackOpens:
type: boolean
TrackLinks:
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
MessageEvents:
type: array
items:
$ref: '#/definitions/MessageEventDetails'
MessageOpenSearchResponse:
properties:
TotalCount:
type: integer
Opens:
type: array
items:
$ref: '#/definitions/ExtendedMessageOpenEventInformation'
OutboundOverviewStatsResponse:
description: ''
properties:
Sent:
type: integer
Bounced:
type: integer
SMTPAPIErrors:
type: integer
BounceRate:
type: integer
SpamComplaints:
type: integer
SpamComplaintsRate:
type: integer
Opens:
type: integer
UniqueOpens:
type: integer
Tracked:
type: integer
WithOpenTracking:
type: integer
WithLinkTracking:
type: integer
TotalClicks:
type: integer
UniqueLinksClicked:
type: integer
TotalTrackedLinksSent:
type: integer
WithClientRecorded:
type: integer
WithPlatformRecorded:
type: integer
WithReadTimeRecorded:
type: integer
ExtendedMessageOpenEventInformation:
description: ''
properties:
FirstOpen:
type: boolean
Client:
description: ''
properties:
Name:
type: string
Company:
type: string
Family:
type: string
OS:
properties:
Name:
type: string
Company:
type: string
Family:
type: string
Platform:
type: string
UserAgent:
type: string
ReadSeconds:
type: string
Geo:
properties:
CountryISOCode:
type: string
Country:
type: string
RegionISOCode:
type: string
Region:
type: string
City:
type: string
Zip:
type: string
Coords:
type: string
IP:
type: string
MessageID:
type: string
ReceivedAt:
type: string
format: 'date-time'
Tag:
type: string
Recipient:
type: string
format: email
MessageEventDetails:
description: ''
properties:
Recipient:
type: string
Type:
type: string
ReceivedAt:
type: string
format: 'date-time'
Details:
properties:
Summary:
type: string
BounceID:
type: string
DeliveryMessage:
type: string
DestinationServer:
type: string
DestinationIP:
type: string
OutboundMessageDetail:
description: ''
properties:
Tag:
type: string
MessageID:
type: string
To:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Cc:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Bcc:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Recipients:
type: array
items:
type: string
ReceivedAt:
type: string
format: 'date-time'
From:
type: string
Subject:
type: string
Attachments:
$ref: '#/definitions/AttachmentCollection'
Status:
type: string
TrackOpens:
type: boolean
TrackLinks:
type: string
enum: ['None', 'HtmlAndText', 'HtmlOnly', 'TextOnly']
InboundMessageDetail:
description: ''
properties:
From:
type: string
FromName:
type: string
FromFull:
description: ''
properties:
Email:
type: string
Name:
type: string
To:
type: string
ToFull:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
Cc:
type: string
CcFull:
type: array
items:
$ref: '#/definitions/EmailNameAddressPair'
ReplyTo:
type: string
OriginalRecipient:
type: string
Subject:
type: string
Date:
type: string
MailboxHash:
type: string
Tag:
type: string
Attachments:
$ref: '#/definitions/AttachmentCollection'
MessageID:
type: string
Status:
type: string
EmailNameAddressPair:
description: ''
properties:
Name:
type: string
Email:
type: string
BounceCountElement:
properties:
Name:
type: string
Count:
type: integer
Type:
type: string
MessageHeader:
description: A single header for an email message.
properties:
Name:
description: The header's name.
type: string
Value:
description: The header's value.
type: string
Attachment:
description: An attachment for an email message.
properties:
Name:
type: string
Content:
type: string
ContentType:
type: string
ContentID:
type: string
AttachmentCollection:
type: array
items:
$ref: '#/definitions/Attachment'
HeaderCollection:
type: array
items:
$ref: '#/definitions/MessageHeader'
TemplateValidationResult:
properties:
ContentIsValid:
type: boolean
ValidationErrors:
type: array
items:
$ref: '#/definitions/TemplateValidationError'
RenderedContent:
type: string
TemplateValidationError:
properties:
Message:
type: string
Line:
type: integer
CharacterPosition:
type: integer
responses:
422:
description: 'An error was generated due to incorrect use of the API. See the Message associated with this response for more information.'
schema:
$ref: '#/definitions/StandardPostmarkResponse'
500:
description: 'Indicates an internal server error occurred.'
paths:
#Message Sending API
/email:
post:
operationId: sendEmail
tags:
- Sending API
summary: Send a single email
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
- name: body
in: body
schema:
$ref: '#/definitions/SendEmailRequest'
responses:
200:
description: OK
schema:
$ref: '#/definitions/SendEmailResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
/email/batch:
post:
operationId: sendEmailBatch
tags:
- Sending API
summary: Send a batch of emails
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
- name: body
in: body
schema:
$ref: '#/definitions/SendEmailBatchRequest'
responses:
200:
description: OK
schema:
$ref: '#/definitions/SendEmailBatchResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
#bounces
/deliverystats:
get:
operationId: getDeliveryStats
summary: Get delivery stats
tags:
- Bounces API
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
responses:
200:
description: OK
schema:
$ref: '#/definitions/DeliveryStatsResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
/bounces:
get:
operationId: getBounces
tags:
- Bounces API
summary: Get bounces
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
- name: count
in: query
description: Number of bounces to return per request. Max 500.
type: integer
maximum: 500
required: true
- name: offset
description: Number of bounces to skip.
in: query
required: true
type: integer
- name: type
description: Filter by type of bounce
in: query
type: string
enum: ['HardBounce','Transient','Unsubscribe','Subscribe','AutoResponder','AddressChange','DnsError','SpamNotification','OpenRelayTest','Unknown','SoftBounce','VirusNotification',
'MailFrontier Matador.','BadEmailAddress','SpamComplaint','ManuallyDeactivated','Unconfirmed','Blocked','SMTPApiError','InboundError','DMARCPolicy','TemplateRenderingFailed']
- name: inactive
description: Filter by emails that were deactivated by Postmark due to the bounce. Set to true or false. If this isn't specified it will return both active and inactive.
in: query
type: boolean
- name: emailFilter
in: query
description: Filter by email address
type: string
format: email
- name: messageID
description: Filter by messageID
in: query
type: string
- name: tag
description: Filter by tag
type: string
in: query
- name: todate
in: query
description: Filter messages up to the date specified. e.g. `2014-02-01`
type: string
format: date
- name: fromdate
description: Filter messages starting from the date specified. e.g. `2014-02-01`
in: query
type: string
format: date
responses:
200:
description: OK
schema:
$ref: '#/definitions/BounceSearchResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
/bounces/{bounceid}:
get:
operationId: getSingleBounce
tags:
- Bounces API
summary: Get a single bounce
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
- name: bounceid
in: path
description: The ID of the bounce to retrieve.
required: true
type: integer
format: int64
responses:
200:
description: OK
schema:
$ref: '#/definitions/BounceInfoResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
/bounces/{bounceid}/dump:
get:
tags:
- Bounces API
summary: Get bounce dump
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string
in: header
- name: bounceid
in: path
description: The ID for the bounce dump to retrieve.
required: true
type: integer
format: int64
responses:
200:
description: OK
schema:
$ref: '#/definitions/BounceDumpResponse'
422:
$ref: '#/responses/422'
500:
$ref: '#/responses/500'
/bounces/tags:
get:
operationId: getBouncedTags
tags:
- Bounces API
summary: Get bounced tags
parameters:
- name: X-Postmark-Server-Token
required: true
description: The token associated with the Server on which this request will operate.
type: string