Skip to content

Commit

Permalink
Merge pull request #345 from mailchimp/dmarc_update
Browse files Browse the repository at this point in the history
Dmarc update
  • Loading branch information
shogren authored Jan 23, 2024
2 parents 7dccd33 + 979b55a commit 97913d0
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 5 deletions.
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

0 comments on commit 97913d0

Please sign in to comment.