Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dmarc update #345

Merged
merged 2 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Transactional

### 1.0.56
* Adding DMARC and DKIM2 fields to the API reference

### 1.0.55
* Updating github actions bot user email

Expand Down
76 changes: 71 additions & 5 deletions spec/transactional.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
},
"swagger": "2.0",
"info": {
"version": "1.0.55",
"version": "1.0.56",
"title": "Mailchimp Transactional API",
"contact": {
"name": "API Support",
Expand Down Expand Up @@ -5188,7 +5188,26 @@
},
"dkim": {
"type": "object",
"description": "details about the domain's DKIM record",
"description": "details about the domain's Legacy DKIM record",
"properties": {
"valid": {
"type": "boolean",
"description": "whether the domain's Legacy DKIM record is valid for use with Mandrill"
},
"valid_after": {
"type": "string",
"format": "date-time",
"description": "when the domain's Legacy DKIM record will be considered valid for use with Mandrill as a UTC string in YYYY-MM-DD HH:MM:SS format. If set, this indicates that the record is valid now, but was previously invalid, and Mandrill will wait until the record's TTL elapses to start using it."
},
"error": {
"type": "string",
"description": "an error describing the Legacy DKIM record, or null if the record is correct"
}
}
},
"dkim2": {
"type": "object",
"description": "details about the domain's rotatable 2048 bit DKIM record",
"properties": {
"valid": {
"type": "boolean",
Expand All @@ -5205,6 +5224,20 @@
}
}
},
"dmarc": {
"type": "object",
"description": "details about the domain's DMARC record",
"properties": {
"valid": {
"type": "boolean",
"description": "whether the domain's DMARC record is valid for use with Mandrill"
},
"error": {
"type": "string",
"description": "an error describing the DMARC record, or null if the record is correct"
}
}
},
"verified_at": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -5411,7 +5444,26 @@
},
"dkim": {
"type": "object",
"description": "details about the domain's DKIM record",
"description": "details about the domain's Legacy DKIM record",
"properties": {
"valid": {
"type": "boolean",
"description": "whether the domain's Legacy DKIM record is valid for use with Mandrill"
},
"valid_after": {
"type": "string",
"format": "date-time",
"description": "when the domain's Legacy DKIM record will be considered valid for use with Mandrill as a UTC string in YYYY-MM-DD HH:MM:SS format. If set, this indicates that the record is valid now, but was previously invalid, and Mandrill will wait until the record's TTL elapses to start using it."
},
"error": {
"type": "string",
"description": "an error describing the Legacy DKIM record, or null if the record is correct"
}
}
},
"dkim2": {
"type": "object",
"description": "details about the domain's rotatable 2048 bit DKIM record",
"properties": {
"valid": {
"type": "boolean",
Expand All @@ -5428,6 +5480,20 @@
}
}
},
"dmarc": {
"type": "object",
"description": "details about the domain's DMARC record",
"properties": {
"valid": {
"type": "boolean",
"description": "whether the domain's DMARC record is valid for use with Mandrill"
},
"error": {
"type": "string",
"description": "an error describing the DMARC record, or null if the record is correct"
}
}
},
"verified_at": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -9471,7 +9537,7 @@
"type": "array",
"description": "an optional list of events that will be posted to the webhook",
"items": {
"type": "string",
"type": "object",
"description": "the individual event to listen for",
"enum": [
"send",
Expand Down Expand Up @@ -9703,7 +9769,7 @@
"type": "array",
"description": "an optional list of events that will be posted to the webhook",
"items": {
"type": "string",
"type": "object",
"description": "the individual event to listen for",
"enum": [
"send",
Expand Down