Skip to content

Commit

Permalink
Merge pull request #335 from mailchimp/broken_template_param
Browse files Browse the repository at this point in the history
adding 'is_broken_template' response to some endpoints
  • Loading branch information
shogren authored Jul 18, 2023
2 parents 74982df + 09eba54 commit 1ba68b8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
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.52
* Added the `is_broken_template` response to the /template endpoints that include it

### 1.0.51
* Fixed `/messages/send-template` documentation where incorrectly referenced the template name usage.

Expand Down
26 changes: 25 additions & 1 deletion 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.51",
"version": "1.0.52",
"title": "Mailchimp Transactional API",
"contact": {
"name": "API Support",
Expand Down Expand Up @@ -7501,6 +7501,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down Expand Up @@ -7623,6 +7627,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down Expand Up @@ -7780,6 +7788,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down Expand Up @@ -7902,6 +7914,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down Expand Up @@ -8024,6 +8040,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down Expand Up @@ -8149,6 +8169,10 @@
"type": "string",
"format": "date-time",
"description": "the date and time the template was last modified as a UTC string in YYYY-MM-DD HH:MM:SS format"
},
"is_broken_template": {
"type": "boolean",
"description": "indicates if the template is malformed or corrupt"
}
}
}
Expand Down

0 comments on commit 1ba68b8

Please sign in to comment.