delete_template_version
Remove a specific version of an email template from SendGrid by providing the template ID and version ID to manage template revisions and maintain clean template libraries.
Instructions
Delete a specific version of a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
template_id | Yes | ID of the template | |
version_id | Yes | ID of the version to delete |
Input Schema (JSON Schema)
{
"properties": {
"template_id": {
"description": "ID of the template",
"type": "string"
},
"version_id": {
"description": "ID of the version to delete",
"type": "string"
}
},
"required": [
"template_id",
"version_id"
],
"type": "object"
}